python311Packages.pydoe: init at 0.3.8
This commit is contained in:
parent
612f97239e
commit
1266217ed4
2 changed files with 40 additions and 0 deletions
38
pkgs/development/python-modules/pydoe/default.nix
Normal file
38
pkgs/development/python-modules/pydoe/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
|
@ -10338,6 +10338,8 @@ self: super: with self; {
|
|||
|
||||
pydoods = callPackage ../development/python-modules/pydoods { };
|
||||
|
||||
pydoe = callPackage ../development/python-modules/pydoe { };
|
||||
|
||||
pydot = callPackage ../development/python-modules/pydot {
|
||||
inherit (pkgs) graphviz;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue