4cb23072fc
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
53 lines
999 B
Nix
53 lines
999 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, cython
|
|
, enum34
|
|
, gfortran
|
|
, isPy27
|
|
, isPy3k
|
|
, numpy
|
|
, pytest
|
|
, python
|
|
, scipy
|
|
, sundials
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "scikits.odes";
|
|
version = "2.6.3";
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9693da78d1bd0bd6af8db59aeaaed92a399c6af36960c6a0a665a2130eab59e7";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gfortran
|
|
cython
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
numpy
|
|
sundials
|
|
scipy
|
|
] ++ lib.optionals (!isPy3k) [ enum34 ];
|
|
|
|
doCheck = true;
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
cd $out/${python.sitePackages}/scikits/odes/tests
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A 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" ];
|
|
};
|
|
}
|