1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-16 15:58:36 +00:00

pythonPackages.nose: Don't run tests on darwin.

Should fix NixOS/charon#77
This commit is contained in:
Shea Levy 2013-02-04 07:19:31 -05:00
parent 5336c82882
commit ed87cc2e4e

View file

@ -1659,6 +1659,8 @@ pythonPackages = python.modules // rec {
};
buildInputs = [ coverage ];
doCheck = ! stdenv.isDarwin;
};
nose2 = if isPy26 then null else (buildPythonPackage rec {