python3Packages.ppft: re-enable tests
This commit is contained in:
@@ -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";
|
||||||
|
|||||||
Reference in New Issue
Block a user