From 83f782f1754c511d647056ea426dd82e9d51633f Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Mon, 3 Dec 2018 12:40:27 -0800 Subject: [PATCH] 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: https://github.com/graphite-project/whisper/commit/703dd9d3a60a0f79383c03a541ee66bd50966a01#diff-62849af500c571aa4532da7be8833e73R14 --- pkgs/development/python-modules/whisper/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/whisper/default.nix b/pkgs/development/python-modules/whisper/default.nix index 1fb9dd6da16a..0f8178e17f2b 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, mock, six }: buildPythonPackage rec { pname = "whisper"; @@ -10,6 +10,7 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ six ]; + checkInputs = [ mock ]; meta = with stdenv.lib; { homepage = http://graphite.wikidot.com/;