pythonPackages.pyramid_beaker: fix building

- checkInputs rather than buildInputs
- it was complaining that py.test was not a valid command
This commit is contained in:
Philipp Volguine 2019-03-24 20:46:39 -04:00
parent d94b113859
commit 7819cc0cb9

@ -14,7 +14,7 @@ buildPythonPackage rec {
py.test -k 'not test_includeme' pyramid_beaker/tests.py
'';
buildInputs = [ pytest ];
checkInputs = [ pytest ];
propagatedBuildInputs = [ beaker pyramid ];