My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/ppft/default.nix

32 lines
600 B

{ lib, stdenv
, buildPythonPackage
, fetchPypi
, python
, six
}:
buildPythonPackage rec {
pname = "ppft";
version = "1.6.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "9e2173042edd5cc9c7bee0d7731873f17fcdce0e42e4b7ab68857d0de7b631fc";
};
propagatedBuildInputs = [ six ];
# darwin seems to hang
doCheck = !stdenv.isDarwin;
checkPhase = ''
cd examples
${python.interpreter} -m ppft.tests
'';
meta = with lib; {
description = "Distributed and parallel python";
homepage = "https://github.com/uqfoundation";
license = licenses.bsd3;
};
}