This commit is contained in:
Domen Kožar 2013-07-30 09:51:43 +02:00
parent 31ff9d9c68
commit a0740092ce

View File

@ -2981,11 +2981,12 @@ pythonPackages = modules // rec {
buildInputs = [ coverage ];
preCheck = ''
# see https://github.com/nose-devs/nose/issues/627
rm functional_tests/test_multiprocessing/test_concurrent_shared.py
'';
doCheck = ! stdenv.isDarwin;
checkPhase = if python.is_py3k or false then ''
${python}/bin/${python.executable} setup.py build_tests
'' else "" + ''
${python}/bin/${python.executable} selftest.py
'';
};
nose2 = if isPy26 then null else (buildPythonPackage rec {