ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / types-enum34 / default.nix
blob6c186f2d8756d2cc896f5906b523120053c2dde1
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-enum34";
8   version = "1.1.8";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "0421lr89vv3fpg77kkj5nmzd7z3nmhw4vh8ibsjp6vfh86b7d73g";
13   };
15   pythonImportsCheck = [
16     "enum-python2-stubs"
17   ];
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   };