nixpkgs/pkgs/development/python-modules/ppft/default.nix

25 lines
455 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "ppft";
2018-11-04 10:35:10 +00:00
version = "1.6.4.8";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:10 +00:00
sha256 = "7e1aa0d74f832f0528234890165f3e64d34b3103ec1db7c93c9e7f2ad8cc18d2";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
description = "Distributed and parallel python";
homepage = https://github.com/uqfoundation;
license = licenses.bsd3;
};
}