pythonPackages.functools32: refactor move to python-modules
This commit is contained in:
parent
a3f18ca87f
commit
56739bc25f
22
pkgs/development/python-modules/functools32/default.nix
Normal file
22
pkgs/development/python-modules/functools32/default.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
}:
|
||||||
|
|
||||||
|
if isPy3k then null else buildPythonPackage rec {
|
||||||
|
pname = "functools32";
|
||||||
|
version = "3.2.3-2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "This is a backport of the functools standard library module from";
|
||||||
|
homepage = "https://github.com/MiCHiLU/python-functools32";
|
||||||
|
license = licenses.psfl;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -1800,21 +1800,7 @@ in {
|
|||||||
|
|
||||||
fastcache = callPackage ../development/python-modules/fastcache { };
|
fastcache = callPackage ../development/python-modules/fastcache { };
|
||||||
|
|
||||||
functools32 = if isPy3k then null else buildPythonPackage rec {
|
functools32 = callPackage ../development/python-modules/functools32 { };
|
||||||
name = "functools32-${version}";
|
|
||||||
version = "3.2.3-2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/f/functools32/functools32-${version}.tar.gz";
|
|
||||||
sha256 = "0v8ya0b58x47wp216n1zamimv4iw57cxz3xxhzix52jkw3xks9gn";
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "This is a backport of the functools standard library module from";
|
|
||||||
homepage = "https://github.com/MiCHiLU/python-functools32";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
gateone = buildPythonPackage rec {
|
gateone = buildPythonPackage rec {
|
||||||
name = "gateone-1.2-0d57c3";
|
name = "gateone-1.2-0d57c3";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user