python3Packages.types-enum34: init at 1.1.8

This commit is contained in:
jacobi petrucciani 2022-03-01 00:44:47 -05:00 committed by Jonathan Ringer
parent a9d567eb62
commit 56ccb4fdd1
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-enum34";
version = "1.1.8";
src = fetchPypi {
inherit pname version;
sha256 = "0421lr89vv3fpg77kkj5nmzd7z3nmhw4vh8ibsjp6vfh86b7d73g";
};
pythonImportsCheck = [
"enum-python2-stubs"
];
meta = with lib; {
description = "Typing stubs for enum34";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ jpetrucciani ];
};
}

View File

@ -10173,6 +10173,8 @@ in {
types-decorator = callPackage ../development/python-modules/types-decorator { };
types-enum34 = callPackage ../development/python-modules/types-enum34 { };
types-freezegun = callPackage ../development/python-modules/types-freezegun { };
types-futures = callPackage ../development/python-modules/types-futures { };