pythonPackages.pyristent: add pytestrunner, fix build

This commit is contained in:
worldofpeace
2019-01-08 00:02:12 -05:00
committed by Jake Waksbaum
parent 33f486f456
commit 0756066b1b
2 changed files with 20 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
, six
, pytest
, hypothesis
, pytestrunner
}:
buildPythonPackage rec {
@@ -16,11 +17,11 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [ six ];
buildInputs = [ pytest hypothesis ];
checkPhase = ''
py.test
'';
checkInputs = [ pytestrunner pytest hypothesis ];
# pytestrunner is only needed to run tests
patches = [ ./no-setup-requires-pytestrunner.patch ];
meta = with stdenv.lib; {
homepage = https://github.com/tobgu/pyrsistent/;