about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyramid_beaker
diff options
context:
space:
mode:
authorPhilipp Volguine <phil.volguine@gmail.com>2019-03-24 20:46:39 -0400
committerPhilipp Volguine <phil.volguine@gmail.com>2019-04-02 01:50:33 -0400
commit7819cc0cb9fc9648540844d9da7090347b82d1e1 (patch)
tree1324378fc58668047479db07198f967bad38066f /pkgs/development/python-modules/pyramid_beaker
parentd94b1138592bbb63d72d7e23c021b69b07357352 (diff)
pythonPackages.pyramid_beaker: fix building
- checkInputs rather than buildInputs
- it was complaining that py.test was not a valid command
Diffstat (limited to 'pkgs/development/python-modules/pyramid_beaker')
-rw-r--r--pkgs/development/python-modules/pyramid_beaker/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pyramid_beaker/default.nix b/pkgs/development/python-modules/pyramid_beaker/default.nix
index 299fba098d9d9..19b26a30ad712 100644
--- a/pkgs/development/python-modules/pyramid_beaker/default.nix
+++ b/pkgs/development/python-modules/pyramid_beaker/default.nix
@@ -14,7 +14,7 @@ buildPythonPackage rec {
     py.test -k 'not test_includeme' pyramid_beaker/tests.py
   '';
 
-  buildInputs = [ pytest ];
+  checkInputs = [ pytest ];
 
   propagatedBuildInputs = [ beaker pyramid ];