Add mock to the list of whisper's test inputs.
This was required as the versiof whisper was upgraded from
1.1.3 to 1.1.4 and mock was added as a test dependency in
that release:
703dd9d3a6 (diff-62849af500c571aa4532da7be8833e73R14)
This commit is contained in:
parent
aad3176fc3
commit
83f782f175
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
{ stdenv, buildPythonPackage, fetchPypi, mock, six }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "whisper";
|
pname = "whisper";
|
||||||
@ -10,6 +10,7 @@ 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/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user