18 buildPythonPackage rec {
19 pname = "scikits.odes";
22 # https://github.com/bmcage/odes/issues/130
23 disabled = isPy27 || pythonAtLeast "3.12";
26 inherit pname version;
27 hash = "sha256-px4Z4UhYk3VK6MBQZoIy/MaU8XuDYC51++v3v5+XXh4=";
35 propagatedBuildInputs = [
39 ] ++ lib.optionals (!isPy3k) [ enum34 ];
41 nativeCheckInputs = [ pytest ];
44 cd $out/${python.sitePackages}/scikits/odes/tests
49 description = "Scikit offering extra ode/dae solvers, as an extension to what is available in scipy";
50 homepage = "https://github.com/bmcage/odes";
51 license = licenses.bsd3;
52 maintainers = with maintainers; [ idontgetoutmuch ];