lol

python3Packages.types-enum34: init at 1.1.8

authored by

jacobi petrucciani and committed by
Jonathan Ringer
56ccb4fd a9d567eb

+27
+25
pkgs/development/python-modules/types-enum34/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "types-enum34"; 8 + version = "1.1.8"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "0421lr89vv3fpg77kkj5nmzd7z3nmhw4vh8ibsjp6vfh86b7d73g"; 13 + }; 14 + 15 + pythonImportsCheck = [ 16 + "enum-python2-stubs" 17 + ]; 18 + 19 + meta = with lib; { 20 + description = "Typing stubs for enum34"; 21 + homepage = "https://github.com/python/typeshed"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ jpetrucciani ]; 24 + }; 25 + }
+2
pkgs/top-level/python-packages.nix
··· 10173 10173 10174 10174 types-decorator = callPackage ../development/python-modules/types-decorator { }; 10175 10175 10176 + types-enum34 = callPackage ../development/python-modules/types-enum34 { }; 10177 + 10176 10178 types-freezegun = callPackage ../development/python-modules/types-freezegun { }; 10177 10179 10178 10180 types-futures = callPackage ../development/python-modules/types-futures { };