mysql80: fix darwin and LLVM 19 build (#374591)
[NixPkgs.git] / pkgs / development / python-modules / types-click / default.nix
blob29f2da7b2303ef83980c3e82e17d29f99fb80353
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools,
6 }:
8 let
9   pname = "types-click";
10   version = "7.1.8";
12 buildPythonPackage {
13   inherit pname version;
14   format = "pyproject";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-tmBJaL5kAdxRYxHKUHCKCii6p6DLhA79dBLw27/04JI=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   meta = with lib; {
24     description = "Collection of library stubs for Python, with static types";
25     homepage = "https://github.com/python/typeshed";
26     license = licenses.asl20;
27     maintainers = with maintainers; [ jfvillablanca ];
28   };