3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.bottleneck: fix build

New setuptools seems to have broken bottleneck.
This commit is contained in:
Frederik Rietdijk 2017-03-18 11:06:28 +01:00
parent d4b72281e6
commit fdc36aaf66

View file

@ -18092,6 +18092,9 @@ in {
checkPhase = ''
nosetests -v $out/${python.sitePackages}
'';
postPatch = ''
substituteInPlace setup.py --replace "__builtins__.__NUMPY_SETUP__ = False" ""
'';
};
paho-mqtt = buildPythonPackage rec {