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

commit 0f890ae0110d27701d8dac3d577eea89dc8e33ae
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 09:32:33 2025 +0100

    gnu: python-jaraco-test: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-jaraco-test): Move from here…
    * gnu/packages/python-build.scm (python-jaraco-test): …to here.
    
    Change-Id: I0ae77cbdc492c60d48348981b042ad8bd9e1e963
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-build.scm | 25 +++++++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 25 -------------------------
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 2390fbcd04..0cbd3a5873 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1715,6 +1715,31 @@ module with a few extra procedures.")
      "This package provides miscellaneous path functions for Python.")
     (license license:expat)))
 
+(define-public python-jaraco-test
+  (package
+    (name "python-jaraco-test")
+    (version "5.5.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jaraco_test" version))
+       (sha256
+        (base32 "0xfkly5w4i4npi4pq1g32y8q8iijkq4pfcfs8wcjhfn4amj6212c"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list #:test-flags '(list "-k" "http")))
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools-bootstrap))
+    (propagated-inputs
+     (list python-jaraco-collections
+           python-jaraco-context
+           python-jaraco-functools))
+    (home-page "https://github.com/jaraco/jaraco.test";)
+    (synopsis "Testing support by jaraco")
+    (description "This package provides testing support by jaraco.")
+    (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 f489e93443..de81b591a3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14287,31 +14287,6 @@ enforced method signatures and consistent 
documentation.")
 releases.")
     (license license:expat)))
 
-(define-public python-jaraco-test
-  (package
-    (name "python-jaraco-test")
-    (version "5.5.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "jaraco_test" version))
-       (sha256
-        (base32 "0xfkly5w4i4npi4pq1g32y8q8iijkq4pfcfs8wcjhfn4amj6212c"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list #:test-flags '(list "-k" "http")))
-    (native-inputs
-     (list python-pytest
-           python-setuptools))
-    (propagated-inputs
-     (list python-jaraco-collections
-           python-jaraco-context
-           python-jaraco-functools))
-    (home-page "https://github.com/jaraco/jaraco.test";)
-    (synopsis "Testing support by jaraco")
-    (description "This package provides testing support by jaraco.")
-    (license license:expat)))
-
 (define-public python-jaraco-vcs
   (package
     (name "python-jaraco-vcs")

Reply via email to