about summary refs log tree commit diff
path: root/pkgs/development/python-modules/ppft/default.nix
blob: 2a1dd73f96c7fb894ef1f85264d7645114fc999e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "ppft";
  version = "1.6.4.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6f99c861822884cb00badbd5f364ee32b90a157084a6768040793988c6b92bff";
  };

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    description = "Distributed and parallel python";
    homepage = https://github.com/uqfoundation;
    license = licenses.bsd3;
  };

}