blob: 1d50f1116e123bb9c33d3cf9ae0361b03d63ecaa (
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
30
31
32
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-setuptools";
version = "80.9.0.20250822";
pyproject = true;
src = fetchPypi {
pname = "types_setuptools";
inherit version;
hash = "sha256-Bw6ncWlo7GeoTH93aNmVL/JNKLZbZZR5ekZPGzBm+WU=";
};
nativeBuildInputs = [ setuptools ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "setuptools-stubs" ];
meta = {
description = "Typing stubs for setuptools";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|