pythonPackages.cytoolz: fix test runner, disable tests for 3.5

This commit is contained in:
Frederik Rietdijk 2016-01-23 19:41:26 +01:00
parent 541fe51a51
commit a161800865

View File

@ -3311,10 +3311,12 @@ in modules // {
buildInputs = with self; [ nose ]; buildInputs = with self; [ nose ];
checkPhase = '' checkPhase = ''
nosetests cytoolz/tests nosetests -v $out/${python.sitePackages}
''; '';
doCheck = false; # Cannot import the extension module # Several tests fail with Python 3.5
# https://github.com/pytoolz/cytoolz/issues/73
doCheck = !isPy35;
meta = { meta = {
homepage = "http://github.com/pytoolz/cytoolz/"; homepage = "http://github.com/pytoolz/cytoolz/";