diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-13 10:52:57 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:40 +0100 |
| commit | dc4099de62b53e23b96e6270b014904f68de1c1b (patch) | |
| tree | 9e0f94ab80ab1a46fca9d6486cae8ca7c1434983 /gnu/packages/python-xyz.scm | |
| parent | 12460b246d42b8c09fbbdf1c3d0c14e3de2a7572 (diff) | |
gnu: python-types-setuptools: Update to 80.9.0.20250529.
* gnu/packages/python-xyz.scm (python-types-setuptools): Update to 80.9.0.20250529.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: I02409d88db355068f57c11cf85a70cd5e23a8602
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9d698c3ec6..581c9c05bb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -37953,14 +37953,17 @@ Python, with static types.") (define-public python-types-setuptools (package (name "python-types-setuptools") - (version "67.6.0.5") - (source (origin - (method url-fetch) - (uri (pypi-uri "types-setuptools" version)) - (sha256 - (base32 - "0qlrxgl4mz6hs8z4qnl91hsa8mqcfm6397s3s3j21imxqxk8ww1s")))) - (build-system python-build-system) + (version "80.9.0.20250529") + (source + (origin + (method url-fetch) + (uri (pypi-uri "types_setuptools" version)) + (sha256 + (base32 "149w6lg8n56k50n08jx450ni9frs2hzbv729sv48c8ds1jx8iq3r")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI archive + (native-inputs + (list python-setuptools)) (home-page "https://github.com/python/typeshed") (synopsis "Typing stubs for setuptools") (description "This package provides typing stubs for setuptools.") |
