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

commit 2bcc3c87077cfcfecd8c688245a81a79a98c8127
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Fri Jul 11 22:19:45 2025 +0100

    gnu: python-setuptools-scm: Update to 8.3.1.
    
    * gnu/packages/python-build.scm (python-setuptools-scm): Update to 8.3.1.
      [build-system]: Use pyproject.
      [arguments] <build-backend>: Use "setuptools.build_meta".
      [propagated-inputs]: Remove python-tomli, and
      python-typing-extenstions; add python-setuptools.
    
    Change-Id: I810fc2a642a23380e8d5773c507361aeedd2f67d
---
 gnu/packages/python-build.scm | 27 +++++++++++++++++----------
 1 file changed, 17 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 96edafede1..bc2c71e019 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -706,16 +706,23 @@ system, then @code{flit_core} to build the package.")
 (define-public python-setuptools-scm
   (package
     (name "python-setuptools-scm")
-    (version "7.1.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "setuptools_scm" version))
-              (sha256
-               (base32 
"09wg4zg30ir1c2cvwqipaz3hwaxz503fgw5zdvaxgakilx2q6l3c"))))
-    (build-system python-build-system)
-    (arguments (list #:tests? #f))    ;avoid extra dependencies such as pytest
-    (propagated-inputs (list python-packaging-bootstrap python-tomli
-                             python-typing-extensions))
+    (version "8.3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "setuptools_scm" version))
+       (sha256
+        (base32 "0qra4jysbdwlrwsb5iz8kai1xxbsz6adzbrbscvx1b2xny95wm9x"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:tests? #f    ;avoid extra dependencies such as pytest
+      ;; pyproject-build-system will error handle forms such as
+      ;; "module:object", so we set it.
+      #:build-backend "setuptools.build_meta"))
+    (propagated-inputs
+     (list python-packaging-bootstrap
+           python-setuptools))
     (home-page "https://github.com/pypa/setuptools_scm/";)
     (synopsis "Manage Python package versions in SCM metadata")
     (description

Reply via email to