pythonPackages.ppft: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
96d92cf9ed
commit
80e9523d4c
24
pkgs/development/python-modules/ppft/default.nix
Normal file
24
pkgs/development/python-modules/ppft/default.nix
Normal file
@@ -0,0 +1,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;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user