about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-07-28 11:03:27 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-07-29 17:22:20 +0200
commit6628c559867f721f301732b4ce7bf5e00d917065 (patch)
tree439f73ebea6156d152eaa332d1a5ee1fbe8bbfee /pkgs/development
parent3e5db479b74e24b7e9d719f74f08507284c88ccd (diff)
downloadnixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar.gz
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar.bz2
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar.lz
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar.xz
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.tar.zst
nixlib-6628c559867f721f301732b4ce7bf5e00d917065.zip
pythonPackages.scipy: 0.17.1 -> 0.18.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/scipy.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/scipy.nix b/pkgs/development/python-modules/scipy.nix
index ae312cd32d59..023335a5e347 100644
--- a/pkgs/development/python-modules/scipy.nix
+++ b/pkgs/development/python-modules/scipy.nix
@@ -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
   '';