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

commit 8a8fb92379745b401032e08980588f6822f8c8eb
Author: Sharlatan Hellseher <[email protected]>
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".
      [native-inputs]: Add python-setuptools and python-wheel.
      [propagated-inputs]: Remove python-tomli, and
      python-typing-extenstions.
    
    Change-Id: I810fc2a642a23380e8d5773c507361aeedd2f67d
---
 gnu/packages/python-build.scm | 29 +++++++++++++++++++----------
 1 file changed, 19 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 777f2dcb65..bacf117044 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -676,16 +676,25 @@ 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"))
+    (native-inputs
+     (list python-setuptools
+           python-wheel))
+    (propagated-inputs
+     (list python-packaging-bootstrap))
     (home-page "https://github.com/pypa/setuptools_scm/";)
     (synopsis "Manage Python package versions in SCM metadata")
     (description

Reply via email to