summary refs log tree commit diff
path: root/pkgs/development/python-modules/cerberus
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-06 18:46:49 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-08 11:36:06 +0200
commite15ba18cee713bf43f56d7f6b1ba4a9bad559669 (patch)
tree6ecb921e2c8695a233c49d9b51fe12d4b8dc20a0 /pkgs/development/python-modules/cerberus
parent3b0221b003f9de59fec4e2d79a1206b48f50d104 (diff)
downloadnixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar.gz
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar.bz2
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar.lz
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar.xz
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.tar.zst
nixlib-e15ba18cee713bf43f56d7f6b1ba4a9bad559669.zip
python.pkgs.cerberus: specify checkInputs
Diffstat (limited to 'pkgs/development/python-modules/cerberus')
-rw-r--r--pkgs/development/python-modules/cerberus/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/cerberus/default.nix b/pkgs/development/python-modules/cerberus/default.nix
index 941979c39903..12536584f051 100644
--- a/pkgs/development/python-modules/cerberus/default.nix
+++ b/pkgs/development/python-modules/cerberus/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
+{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
 
 buildPythonPackage rec {
   pname = "Cerberus";
@@ -9,6 +9,8 @@ buildPythonPackage rec {
     sha256 = "a5b39090fde3ec3294c9d7030b8eda935b42222160a66a922e0c8aea34cabfdf";
   };
 
+  checkInputs = [ pytestrunner pytest ];
+
   meta = with stdenv.lib; {
     homepage = http://python-cerberus.org/;
     description = "Lightweight, extensible schema and data validation tool for Python dictionaries";