1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 22:50:49 +00:00

pythonPackages.nosejs: fix test runner

This commit is contained in:
Frederik Rietdijk 2016-01-24 12:47:50 +01:00
parent 1a25a73299
commit e09c4b3a9d

View file

@ -12165,6 +12165,11 @@ in modules // {
sha256 = "0qrhkd3sga56qf6k0sqyhwfcladwi05gl6aqmr0xriiq1sgva5dy";
};
buildInputs = with self; [ nose ];
checkPhase = ''
nosetests -v
'';
};
nose-cprof = buildPythonPackage rec {