mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
python.pkgs.enum-compat: init at 0.0.2
This commit is contained in:
parent
8aa73bbf55
commit
834471985e
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user