guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ca0d95b530cd185b8975340c819769b7c0224756
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Jul 13 10:52:57 2025 +0100
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
---
gnu/packages/python-xyz.scm | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b83e2e0982..0c5e275350 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38007,14 +38007,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.")