pythonPackages.scipy: 0.17.1 -> 0.18.0

This commit is contained in:
Frederik Rietdijk
2016-07-28 11:03:27 +02:00
parent 3e5db479b7
commit 6628c55986
2 changed files with 15 additions and 10 deletions

View File

@@ -12,6 +12,11 @@ in buildPythonPackage (args // rec {
buildInputs = (args.buildInputs or [ gfortran nose ]);
propagatedBuildInputs = (args.propagatedBuildInputs or [ passthru.blas numpy]);
# Remove tests because of broken wrapper
prePatch = ''
rm scipy/linalg/tests/test_lapack.py
'';
preConfigure = ''
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
'';