python.pkgs.enum-compat: init at 0.0.2

This commit is contained in:
Nikolay Amiantov 2017-02-26 00:56:50 +03:00
parent 8aa73bbf55
commit 834471985e

View file

@ -10986,6 +10986,26 @@ in {
};
};
enum-compat = buildPythonPackage rec {
pname = "enum-compat";
version = "0.0.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "14j1i963jic2vncbf9k5nq1vvv8pw2zsg7yvwhm7d9c6h7qyz74k";
};
propagatedBuildInputs = with self; [ enum34 ];
meta = {
homepage = "https://github.com/jstasiak/enum-compat";
description = "enum/enum34 compatibility package";
license = licenses.mit;
maintainers = with maintainers; [ abbradar ];
};
};
enum34 = if pythonAtLeast "3.4" then null else buildPythonPackage rec {
pname = "enum34";
version = "1.1.6";