lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

pythonPackages.scipy: disable tests

We should try to get these enabled again asap.
https://github.com/scipy/scipy/pull/8871#issuecomment-417391433

authored by

Frederik Rietdijk and committed by
Frederik Rietdijk
f823ca57 ee5bff20

+5 -1
+5 -1
pkgs/development/python-modules/scipy/default.nix
··· 1 - {lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy}: 1 + {lib, fetchPypi, python, buildPythonPackage, gfortran, nose, pytest, numpy, fetchpatch}: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "scipy"; ··· 17 17 prePatch = '' 18 18 rm scipy/linalg/tests/test_lapack.py 19 19 ''; 20 + 21 + # INTERNALERROR, solved with https://github.com/scipy/scipy/pull/8871 22 + # however, it does not apply cleanly. 23 + doCheck = false; 20 24 21 25 preConfigure = '' 22 26 sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py