python2Packages.scikits-odes: disable

Ever since we added KLU support to sundials (#94930),
it stopped building while the Python 3 versions didn't
break. Python 2 is EOL.
This commit is contained in:
Guillaume Desforges 2020-08-10 12:15:37 +02:00 committed by Jon
parent 860bc40a22
commit 4e888fb70d

View File

@ -6,6 +6,7 @@
, cython
, enum34
, gfortran
, isPy27
, isPy3k
, numpy
, pytest
@ -18,6 +19,8 @@ buildPythonPackage rec {
pname = "scikits.odes";
version = "2.6.1";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "0kbf2n16h9s35x6pavlx6sff0pqr68i0x0609z92a4vadni32n6b";