f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
60 lines
1.1 KiB
Nix
60 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonAtLeast,
|
|
cython,
|
|
enum34,
|
|
gfortran,
|
|
isPy27,
|
|
isPy3k,
|
|
numpy,
|
|
pytest,
|
|
python,
|
|
scipy,
|
|
sundials,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scikits.odes";
|
|
version = "2.7.0";
|
|
|
|
# https://github.com/bmcage/odes/issues/130
|
|
disabled = isPy27 || pythonAtLeast "3.12";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-px4Z4UhYk3VK6MBQZoIy/MaU8XuDYC51++v3v5+XXh4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
cython
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
sundials
|
|
scipy
|
|
] ++ lib.optionals (!isPy3k) [ enum34 ];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
cd $out/${python.sitePackages}/scikits/odes/tests
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Scikit offering extra ode/dae solvers, as an extension to what is available in scipy";
|
|
homepage = "https://github.com/bmcage/odes";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ idontgetoutmuch ];
|
|
platforms = [
|
|
"aarch64-linux"
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
];
|
|
};
|
|
}
|