mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
python.pkgs.enum-compat: init at 0.0.2
This commit is contained in:
parent
8aa73bbf55
commit
834471985e
1 changed files with 20 additions and 0 deletions
|
@ -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 a new issue