blob: ec2a0e755d74a57bce4ec2b7a2b8d93813f4d1cf (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
types-requests,
}:
buildPythonPackage rec {
pname = "types-tqdm";
version = "4.67.0.20250809";
pyproject = true;
src = fetchPypi {
pname = "types_tqdm";
inherit version;
hash = "sha256-Ar96uRJWCAucTGP58RtRnCe6r1Jxjl/auelgbaFo1QA=";
};
build-system = [ setuptools ];
dependencies = [ types-requests ];
# This package does not have tests.
doCheck = false;
meta = {
description = "Typing stubs for tqdm";
homepage = "https://pypi.org/project/types-tqdm/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}
|