about summary refs log tree commit diff
path: root/pkgs/development/python-modules/freezegun/default.nix
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-06-09 12:25:38 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-06-15 08:44:06 +0200
commit0274fcd1c6d63c01fb149f537aad2bd77b0fb33b (patch)
treef3e3d84bdd6b2cee3a4c58822bf7759f3325a782 /pkgs/development/python-modules/freezegun/default.nix
parent388c29fb2f5944fa61800064b7133c69b01157df (diff)
freezegun: fix build
Diffstat (limited to 'pkgs/development/python-modules/freezegun/default.nix')
-rw-r--r--pkgs/development/python-modules/freezegun/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/freezegun/default.nix b/pkgs/development/python-modules/freezegun/default.nix
index cf98fa855a9e1..3f0fd31d8a15a 100644
--- a/pkgs/development/python-modules/freezegun/default.nix
+++ b/pkgs/development/python-modules/freezegun/default.nix
@@ -5,6 +5,7 @@
 , six
 , mock
 , nose
+, pytest
 }:
 
 buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
   };
 
   propagatedBuildInputs = [ dateutil six ];
-  checkInputs = [ mock nose ];
+  checkInputs = [ mock nose pytest ];
 
   meta = with stdenv.lib; {
     description = "FreezeGun: Let your Python tests travel through time";