2019-07-02 23:12:27 +02:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, buildPythonPackage
|
2020-02-19 15:38:11 +01:00
|
|
|
, fetchPypi
|
2019-07-02 23:12:27 +02:00
|
|
|
, fetchurl
|
|
|
|
, cython
|
|
|
|
, enum34
|
|
|
|
, gfortran
|
|
|
|
, isPy3k
|
|
|
|
, numpy
|
|
|
|
, pytest
|
|
|
|
, python
|
|
|
|
, scipy
|
2020-02-19 15:29:38 +01:00
|
|
|
, sundials
|
2019-07-02 23:12:27 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "scikits.odes";
|
2020-02-19 15:38:11 +01:00
|
|
|
version = "2.6.1";
|
2019-07-02 23:12:27 +02:00
|
|
|
|
2020-02-19 15:38:11 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0kbf2n16h9s35x6pavlx6sff0pqr68i0x0609z92a4vadni32n6b";
|
2019-07-02 23:12:27 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
gfortran
|
|
|
|
cython
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
2020-02-19 15:29:38 +01:00
|
|
|
sundials
|
2019-07-02 23:12:27 +02:00
|
|
|
scipy
|
|
|
|
] ++ lib.optionals (!isPy3k) [ enum34 ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
cd $out/${python.sitePackages}/scikits/odes/tests
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.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; [ flokli idontgetoutmuch ];
|
|
|
|
platforms = [ "aarch64-linux" "x86_64-linux" "x86_64-darwin" ];
|
|
|
|
};
|
|
|
|
}
|