blob: acc25f83a0e4aa6a8e623eb327a61dcf13ac924c (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-greenlet";
version = "3.2.0.20250915";
pyproject = true;
src = fetchPypi {
pname = "types_greenlet";
inherit version;
hash = "sha256-gxo5Cx1HibFzsGesVGpAJPqcQ4JdufZhlJFt0MheOSU=";
};
build-system = [ setuptools ];
doCheck = false;
pythonImportsCheck = [ "greenlet-stubs" ];
meta = {
description = "Typing stubs for greenlet";
homepage = "https://github.com/python/typeshed";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|