guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 0bf8738a848b2367b455ec9a01ca53370d1d4b74
Author: Sharlatan Hellseher <sharlata...@gmail.com>
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 bbd6a73d5e..0f3bd9cf31 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38119,14 +38119,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.")

Reply via email to