about summary refs log tree commit diff
path: root/pkgs/development/python-modules/whisper
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-12-03 12:00:03 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2018-12-03 16:50:42 +0100
commitf6cb659fbd4036776dbee29a74728f84eda002aa (patch)
tree7e3c8ed5d719543f3a809107492f2f9e2c9ebc9b /pkgs/development/python-modules/whisper
parent9614364dec7aec386d733583ead02c44bf2ae37c (diff)
python.pkgs.whisper: fix tests
Diffstat (limited to 'pkgs/development/python-modules/whisper')
-rw-r--r--pkgs/development/python-modules/whisper/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/whisper/default.nix b/pkgs/development/python-modules/whisper/default.nix
index 1fb9dd6da16a5..d78d39d9d7a48 100644
--- a/pkgs/development/python-modules/whisper/default.nix
+++ b/pkgs/development/python-modules/whisper/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, six }:
+{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
 
 buildPythonPackage rec {
   pname = "whisper";
@@ -11,6 +11,8 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ six ];
 
+  checkInputs = [ mock ];
+
   meta = with stdenv.lib; {
     homepage = http://graphite.wikidot.com/;
     description = "Fixed size round-robin style database";