about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pydoe/default.nix
blob: e361d09ced3b7a186e1ee163b38b46fb47c45633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
, wheel
, scipy
, numpy
}:

buildPythonPackage rec {
  pname = "pyDOE";
  version = "0.3.8";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-y9bxSuJtPJ9zYBMgX1PqEZGt1FZwM8Pud7fdNWVmxLY=";
    extension = "zip";
  };

  nativeBuildInputs = [
    setuptools
    wheel
  ];
  propagatedBuildInputs = [
    scipy
    numpy
  ];

  pythonImportsCheck = [ "pyDOE" ];

  meta = with lib; {
    description = "Design of experiments for Python";
    homepage = "https://github.com/tisimst/pyDOE";
    license = licenses.bsd3;
    maintainers = with maintainers; [ doronbehar ];
  };
}