From ec0f58b459d176b39dadf4fc22727bbc6bea298c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 18 Nov 2015 17:55:58 +0100 Subject: [PATCH] pythonPackages.clint: fix build --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9a5e06ee5f8..4542470a08b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16601,10 +16601,11 @@ let }; checkPhase = '' - nosetests + ${python.interpreter} test_clint.py ''; - buildInputs = with self; [ pillow nose_progressive nose mock blessings nose ]; + buildInputs = with self; [ mock blessings nose nose_progressive ]; + propagatedBuildInputs = with self; [ pillow blessings args ]; meta = { maintainers = with maintainers; [ iElectric ];