blob: cb008336cc42f8ea7a5278d9dd4324f5089397ce (
plain)
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
29
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
let
pname = "types-click";
version = "7.1.8";
in
buildPythonPackage {
inherit pname version;
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-tmBJaL5kAdxRYxHKUHCKCii6p6DLhA79dBLw27/04JI=";
};
nativeBuildInputs = [ setuptools ];
meta = {
description = "Collection of library stubs for Python, with static types";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jfvillablanca ];
};
}
|