pythonPackages: fix native / check inputs

This commit is contained in:
Frederik Rietdijk
2019-01-05 11:54:27 +01:00
committed by Frederik Rietdijk
parent 15396247ca
commit 5a3670b83c
34 changed files with 77 additions and 59 deletions

View File

@@ -13,9 +13,11 @@ buildPythonPackage rec {
sha256 = "c88fa8a7120623f23990a7f086a9657f6ced09025a55e3be8649a30b4945441a";
};
buildInputs = [ nose ];
checkInputs = [ nose ];
checkPhase = "./test";
checkPhase = ''
./test
'';
meta = with stdenv.lib; {
description = "A minimalistic mocking library for python";