python3Packages.ppft: re-enable tests
This commit is contained in:
parent
a149202c5a
commit
c2a3fed5b3
@ -1,6 +1,7 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, python
|
||||||
, six
|
, six
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -15,8 +16,12 @@ buildPythonPackage rec {
|
|||||||
|
|
||||||
propagatedBuildInputs = [ six ];
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
# tests no longer packages on pypi
|
# darwin seems to hang
|
||||||
doCheck = false;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
checkPhase = ''
|
||||||
|
cd examples
|
||||||
|
${python.interpreter} -m ppft.tests
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Distributed and parallel python";
|
description = "Distributed and parallel python";
|
||||||
|
Loading…
Reference in New Issue
Block a user