3
0
Fork 0
forked from mirrors/nixpkgs

isso: fix check phase

This commit is contained in:
Martin Weinelt 2022-02-16 01:27:27 +01:00
parent bef19b759f
commit 83c88278c3
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -50,7 +50,9 @@ with python3Packages; buildPythonApplication rec {
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} setup.py nosetests
runHook preCheck
${python.interpreter} -m nose
runHook postCheck
'';
passthru.tests = { inherit (nixosTests) isso; };