about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/types-click/default.nix
blob: 78c99fe42808a6c0038f3f6c563e091a743e481b (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
27
28
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:

let
  pname = "types-click";
  version = "7.1.8";
in
buildPythonPackage {
  inherit pname version;
  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-tmBJaL5kAdxRYxHKUHCKCii6p6DLhA79dBLw27/04JI=";
  };

  nativeBuildInputs = [ setuptools ];

  meta = with lib; {
    description = "Collection of library stubs for Python, with static types";
    homepage = "https://github.com/python/typeshed";
    license = licenses.asl20;
    maintainers = with maintainers; [ jfvillablanca ];
  };
}