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

commit d01d3cdd2f0d3a34973728eaf37d046c0cf4ce1f
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 07:26:32 2025 +0100

    gnu: python-jaraco-classes: Move to (gnu packages python-build).
    
    * gnu/packages/python-xyz.scm (python-jaraco-classes): Move from here…
    * gnu/packages/python-build.scm (python-jaraco-classes): …to here.
    [native-inputs]: Replace python-pytest by python-pytest-bootstrap,
    python-setuptools by python-setuptools-bootstrap.
    
    Change-Id: Ib3dce8be7938bc81d8363888662a19e66b94d8f7
    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 1515a4dfb4..9a96ed0a7c 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1380,6 +1380,31 @@ package from a wheel distribution.  It provides basic 
functionality and
 abstractions for handling wheels and installing packages from wheels.")
     (license license:expat)))
 
+(define-public python-jaraco-classes
+  (package
+    (name "python-jaraco-classes")
+    (version "3.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jaraco.classes" version))
+       (sha256
+        (base32 "1k9s7wxhsy15730qab8bry7kpgl4yk3wch45ikfw0f823nsj9827"))))
+    (build-system pyproject-build-system)
+    (arguments
+     (list  ; Do not test the myproject.toml build as it pulls dependencies.
+      #:test-flags '(list "-k" "not project")))
+    (native-inputs
+     (list python-pytest-bootstrap
+           python-setuptools-bootstrap))
+    (propagated-inputs
+     (list python-more-itertools))
+    (home-page "https://github.com/jaraco/jaraco.classes";)
+    (synopsis "Utility functions for Python class constructs")
+    (description "This Python library contains utility functions for Python
+class constructs.")
+    (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 18975f4b77..9152bb52a4 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14292,31 +14292,6 @@ finding unresolved symbols in Python code and their 
corresponding imports.")
 enforced method signatures and consistent documentation.")
     (license license:expat)))
 
-(define-public python-jaraco-classes
-  (package
-    (name "python-jaraco-classes")
-    (version "3.4.0")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (pypi-uri "jaraco.classes" version))
-       (sha256
-        (base32 "1k9s7wxhsy15730qab8bry7kpgl4yk3wch45ikfw0f823nsj9827"))))
-    (build-system pyproject-build-system)
-    (arguments
-     (list  ; Do not test the myproject.toml build as it pulls dependencies.
-      #:test-flags '(list "-k" "not project")))
-    (native-inputs
-     (list python-pytest
-           python-setuptools))
-    (propagated-inputs
-     (list python-more-itertools))
-    (home-page "https://github.com/jaraco/jaraco.classes";)
-    (synopsis "Utility functions for Python class constructs")
-    (description "This Python library contains utility functions for Python
-class constructs.")
-    (license license:expat)))
-
 (define-public python-jaraco-collections
   (package
     (name "python-jaraco-collections")

Reply via email to