diff options
author | Hugo Buddelmeijer <hugo@buddelmeijer.nl> | 2025-09-23 21:43:38 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-28 00:43:28 +0100 |
commit | c6a808735a1582de3b1c2f80ab8cc7548ae0d02d (patch) | |
tree | 98cc978ce86e3b6868e980ece59b320bc603cea5 /gnu/packages/python-xyz.scm | |
parent | 6b48bd14dfca14c265e1747bfcff121ec8f5b6b1 (diff) |
gnu: Add python-types-tqdm.
* gnu/packages/python-xyz.scm (python-types-tqdm): New variable.
Change-Id: I91ba21d84b467c9bf172db48aeba5309a70fe51d
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a5bbb9bc67..a23c6e40fc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -38027,6 +38027,25 @@ static types.") (description "This package providis typing stubs for python-aiofiles.") (license license:asl2.0))) +(define-public python-types-tqdm + (package + (name "python-types-tqdm") + (version "4.67.0.20250809") + (source + (origin + (method url-fetch) + (uri (pypi-uri "types_tqdm" version)) + (sha256 + (base32 "006md2hnsq79p7d5z3kiaapvl9wwa4dz3yb39jf0n22n2awpmgq2")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI archive + (native-inputs (list python-setuptools)) + (propagated-inputs (list python-types-requests)) + (home-page "https://github.com/python/typeshed") + (synopsis "Typing stubs for python-tqdm") + (description "This package providis typing stubs for python-tqdm.") + (license license:asl2.0))) + (define-public python-types-docutils (package (name "python-types-docutils") |