python.pkgs.whisper: fix tests
This commit is contained in:
parent
9614364dec
commit
f6cb659fbd
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
{ stdenv, buildPythonPackage, fetchPypi, six, mock }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "whisper";
|
pname = "whisper";
|
||||||
|
@ -11,6 +11,8 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
checkInputs = [ mock ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://graphite.wikidot.com/;
|
homepage = http://graphite.wikidot.com/;
|
||||||
description = "Fixed size round-robin style database";
|
description = "Fixed size round-robin style database";
|
||||||
|
|
Loading…
Reference in New Issue