depot/third_party/nixpkgs/pkgs/development/python-modules/pydoe/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

40 lines
691 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
scipy,
numpy,
}:
buildPythonPackage rec {
pname = "pydoe";
version = "0.3.8";
pyproject = true;
src = fetchPypi {
pname = "pyDOE";
inherit 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 ];
};
}