pythonPackages.root_numpy: fix build
checkPhase must use nosetest
This commit is contained in:
parent
0426d9001f
commit
ebd4d38651
1 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root }:
|
||||
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "root_numpy";
|
||||
|
@ -11,6 +11,11 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
disabled = isPy3k; # blocked by #27649
|
||||
checkInputs = [ nose ];
|
||||
checkPhase = ''
|
||||
python setup.py install_lib -d .
|
||||
nosetests -s -v root_numpy
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ numpy root ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue