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