1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 wheel,
7 scipy,
8 numpy,
9}:
10
11buildPythonPackage rec {
12 pname = "pydoe";
13 version = "0.3.8";
14 pyproject = true;
15
16 src = fetchPypi {
17 pname = "pyDOE";
18 inherit version;
19 hash = "sha256-y9bxSuJtPJ9zYBMgX1PqEZGt1FZwM8Pud7fdNWVmxLY=";
20 extension = "zip";
21 };
22
23 nativeBuildInputs = [
24 setuptools
25 wheel
26 ];
27 propagatedBuildInputs = [
28 scipy
29 numpy
30 ];
31
32 pythonImportsCheck = [ "pyDOE" ];
33
34 meta = with lib; {
35 description = "Design of experiments for Python";
36 homepage = "https://github.com/tisimst/pyDOE";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ doronbehar ];
39 };
40}