python3Packages.deap: add nose to checkInputs
This commit is contained in:
parent
ca2cf66f10
commit
93c9cb09bd
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, python, numpy, matplotlib }:
|
||||
{ stdenv, buildPythonPackage, fetchPypi, python, numpy, matplotlib, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deap";
|
||||
|
@ -11,6 +11,7 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ numpy matplotlib ];
|
||||
|
||||
checkInputs = [ nose ];
|
||||
checkPhase = ''
|
||||
${python.interpreter} setup.py nosetests --verbosity=3
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue