about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-enum34/default.nix
blob: d82c84c5c5da071b83d942a6bab07e37b4d937d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "types-enum34";
  version = "1.1.8";
  format = "setuptools";

  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 ];
  };
}