7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
hatchling,
|
|
hatch-vcs,
|
|
numpy,
|
|
scipy,
|
|
matplotlib,
|
|
pandas,
|
|
multiprocess,
|
|
pathos,
|
|
}:
|
|
let
|
|
finalAttrs = {
|
|
pname = "salib";
|
|
version = "1.5.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit (finalAttrs) pname version;
|
|
hash = "sha256-5KnDGbjdAplajcmD9XxFLLflttvUPnt4VskMtqMyu18=";
|
|
};
|
|
|
|
build-system = [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
dependencies = [
|
|
numpy
|
|
scipy
|
|
matplotlib
|
|
pandas
|
|
multiprocess
|
|
];
|
|
|
|
optional-dependencies = {
|
|
distributed = [ pathos ];
|
|
};
|
|
|
|
# There are no tests in the pypi package
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"SALib"
|
|
"SALib.analyze"
|
|
"SALib.plotting"
|
|
"SALib.sample"
|
|
"SALib.test_functions"
|
|
"SALib.util"
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/SALib/SALib/releases";
|
|
description = "Python implementations of commonly used sensitivity analysis methods, useful in systems modeling to calculate the effects of model inputs or exogenous factors on outputs of interest";
|
|
homepage = "https://github.com/SALib/SALib";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ theobori ];
|
|
mainProgram = "salib";
|
|
};
|
|
};
|
|
in
|
|
buildPythonPackage finalAttrs
|