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