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

commit d16c52e8e58a2c23be48f93d892b0c5102808596
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 07:55:38 2025 +0100

    gnu: python-jaraco-path: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-jaraco-path): Move from here…
    * gnu/packages/python-build.scm (python-jaraco-path): …to here.
    [native-inputs]: Replace python-pytest by python-pytest-bootstrap,
    python-setuptools by python-setuptools-bootstrap,
    python-setuptools-scm by python-setuptools-scm-boostrap.
    
    Change-Id: I1180653d8834d9161be77c3f6b36a3b7a8884f20
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-build.scm | 31 +++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 29 -----------------------------
 2 files changed, 31 insertions(+), 29 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 8ea704ade1..e12ecec45b 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1517,6 +1517,37 @@ WeightedLookup: A specialized RangeMap for selecting an 
item by weights.
 module with a few extra procedures.")
     (license license:expat)))
 
+(define-public python-jaraco-path
+  (package
+    (name "python-jaraco-path")
+    (version "3.7.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jaraco/jaraco.path";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "12bj9za1yp0yn0ppya6a4kwgmh7hvmw64x7ivp4y0sbv20r0vfdq"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'set-version
+            (lambda _
+              (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))))))
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools-bootstrap
+           python-setuptools-scm-bootstrap))
+    (home-page "https://github.com/jaraco/jaraco.path";)
+    (synopsis "Miscellaneous path functions")
+    (description
+     "This package provides miscellaneous path functions for Python.")
+    (license license:expat)))
+
 (define-public python-jaraco-text
   (package
     (name "python-jaraco-text")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a2dde56969..b777a92a55 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14322,35 +14322,6 @@ enforced method signatures and consistent 
documentation.")
 releases.")
     (license license:expat)))
 
-(define-public python-jaraco-path
-  (package
-    (name "python-jaraco-path")
-    (version "3.7.2")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/jaraco/jaraco.path";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "12bj9za1yp0yn0ppya6a4kwgmh7hvmw64x7ivp4y0sbv20r0vfdq"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list
-      #:phases
-      #~(modify-phases %standard-phases
-          (add-after 'unpack 'set-version
-            (lambda _
-              (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version))))))
-    (native-inputs
-     (list python-pytest python-setuptools python-setuptools-scm))
-    (home-page "https://github.com/jaraco/jaraco.path";)
-    (synopsis "Miscellaneous path functions")
-    (description
-     "This package provides miscellaneous path functions for Python.")
-    (license license:expat)))
-
 (define-public python-jaraco-test
   (package
     (name "python-jaraco-test")

Reply via email to