Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / types-enum34 / default.nix
blobd82c84c5c5da071b83d942a6bab07e37b4d937d3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-enum34";
8   version = "1.1.8";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0421lr89vv3fpg77kkj5nmzd7z3nmhw4vh8ibsjp6vfh86b7d73g";
14   };
16   pythonImportsCheck = [
17     "enum-python2-stubs"
18   ];
20   meta = with lib; {
21     description = "Typing stubs for enum34";
22     homepage = "https://github.com/python/typeshed";
23     license = licenses.asl20;
24     maintainers = with maintainers; [ jpetrucciani ];
25   };