pythonPackages.enum: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-16 14:27:29 -04:00 committed by Frederik Rietdijk
parent 29ac3c651d
commit 61ed2b6ca1
2 changed files with 27 additions and 20 deletions

View File

@ -0,0 +1,26 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
, isPyPy
}:
buildPythonPackage rec {
pname = "enum";
version = "0.4.4";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff";
};
doCheck = !isPyPy;
meta = with stdenv.lib; {
homepage = https://pypi.python.org/pypi/enum/;
description = "Robust enumerated type support in Python";
license = licenses.gpl2;
};
}

View File

@ -2346,26 +2346,7 @@ in {
elpy = callPackage ../development/python-modules/elpy { };
enum = buildPythonPackage rec {
name = "enum-0.4.4";
disabled = isPy3k;
src = pkgs.fetchurl {
url = "mirror://pypi/e/enum/${name}.tar.gz";
sha256 = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff";
};
doCheck = !isPyPy;
buildInputs = with self; [ ];
propagatedBuildInputs = with self; [ ];
meta = {
homepage = https://pypi.python.org/pypi/enum/;
description = "Robust enumerated type support in Python";
};
};
enum = callPackage ../development/python-modules/enum { };
enum-compat = callPackage ../development/python-modules/enum-compat { };