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

commit dd476ec09b1ba18ead626027d13beceffba0a016
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 07:43:04 2025 +0100

    gnu: python-jaraco-text: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-jaraco-text): Move from here…
    * gnu/packages/python-build.scm (python-jaraco-text): …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: I0597c86f98f6bd98104c6507d8aa9d67295d5234
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-build.scm | 34 ++++++++++++++++++++++++++++++++++
 gnu/packages/python-xyz.scm   | 34 ----------------------------------
 2 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 6799ae43dc..08d0497167 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1459,6 +1459,40 @@ class constructs.")
 module with a few extra procedures.")
     (license license:expat)))
 
+(define-public python-jaraco-text
+  (package
+    (name "python-jaraco-text")
+    (version "4.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jaraco_text" version))
+       (sha256
+        (base32 "1c0dy5jvhigcyryi2h8n1m87dnhyxr7w01n9shwzkdlslv7gwwav"))))
+    (build-system pyproject-build-system)
+    ;; Do not test pyproject.toml with python-pytest-checkdocs as it tries to
+    ;; download dependencies.
+    (arguments
+     '(#:test-flags '("-k" "not project")))
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools-bootstrap
+           python-setuptools-scm-bootstrap))
+    (propagated-inputs
+     (list python-autocommand
+           python-inflect
+           python-jaraco-context
+           python-jaraco-functools
+           python-more-itertools))
+    (home-page "https://github.com/jaraco/jaraco.text";)
+    (synopsis "Provides various routines for text manipulation")
+    (description
+     "This package provides handy routines for dealing with text,
+such as wrapping, substitution, trimming, stripping, prefix and suffix
+removal, line continuation, indentation, comment processing, identifier
+processing, values parsing, case insensitive comparison, and more.")
+    (license license:expat)))
+
 (define-public python-pdm-backend
   (package
     (name "python-pdm-backend")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b3330e09f4..8560cf3f3e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14435,40 +14435,6 @@ releases.")
     (description "This package provides testing support by jaraco.")
     (license license:expat)))
 
-(define-public python-jaraco-text
-  (package
-    (name "python-jaraco-text")
-    (version "4.0.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "jaraco_text" version))
-       (sha256
-        (base32 "1c0dy5jvhigcyryi2h8n1m87dnhyxr7w01n9shwzkdlslv7gwwav"))))
-    (build-system pyproject-build-system)
-    ;; Do not test pyproject.toml with python-pytest-checkdocs as it tries to
-    ;; download dependencies.
-    (arguments
-     '(#:test-flags '("-k" "not project")))
-    (native-inputs
-     (list python-pytest
-           python-setuptools
-           python-setuptools-scm))
-    (propagated-inputs
-     (list python-autocommand
-           python-inflect
-           python-jaraco-context
-           python-jaraco-functools
-           python-more-itertools))
-    (home-page "https://github.com/jaraco/jaraco.text";)
-    (synopsis "Provides various routines for text manipulation")
-    (description
-     "This package provides handy routines for dealing with text,
-such as wrapping, substitution, trimming, stripping, prefix and suffix
-removal, line continuation, indentation, comment processing, identifier
-processing, values parsing, case insensitive comparison, and more.")
-    (license license:expat)))
-
 (define-public python-jaraco-vcs
   (package
     (name "python-jaraco-vcs")

Reply via email to