python3Packages.ppft: re-enable tests

This commit is contained in:
Jonathan Ringer 2020-01-21 12:15:03 -08:00 committed by Jon
parent a149202c5a
commit c2a3fed5b3

View file

@ -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";