8ab3ba1f23
tests are no longer packaged with pypi package
28 lines
512 B
Nix
28 lines
512 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ppft";
|
|
version = "1.6.6.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9e2173042edd5cc9c7bee0d7731873f17fcdce0e42e4b7ab68857d0de7b631fc";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
# tests no longer packages on pypi
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Distributed and parallel python";
|
|
homepage = https://github.com/uqfoundation;
|
|
license = licenses.bsd3;
|
|
};
|
|
|
|
}
|