blob: 9b8d99cfa18138e953d96e81533780cf00e2d1a8 (
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
33
34
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-six";
version = "1.17.0.20251009";
pyproject = true;
src = fetchPypi {
pname = "types_six";
inherit version;
hash = "sha256-7+AwZOzQ/7D3r+EzmQojmNhJPY0cHMEP89/kdtV7pE8=";
};
build-system = [ setuptools ];
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [
"six-stubs"
];
meta = {
description = "Typing stubs for six";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ YorikSar ];
};
}
|