buildPythonPackage: fix standalone applications using it

This commit is contained in:
Domen Kožar
2015-11-20 13:48:30 +01:00
parent 99a64da600
commit 704c8bab41
22 changed files with 88 additions and 216 deletions

View File

@@ -8,9 +8,11 @@ buildPythonPackage rec {
sha256 = "6a0b7b1fe2b046875456e14eda3e42430e493bf2251a64481cf4fd1a1e21a80e";
};
buildInputs = [ pythonPackages.nose pythonPackages.minimock ];
buildInputs = with pythonPackages; [ nose minimock ];
checkPhase = "make test";
checkPhase = ''
nosetests
'';
meta = {
description = "A gpodder.net client library";