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

commit 87d07284a5f15e3d60e786b65beea60d976bc63c
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 06:55:01 2025 +0100

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

diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 4b8835dc81..1515a4dfb4 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -1303,6 +1303,33 @@ from requirements.txt.")
 version control system (like Git) to determine project versions.")
     (license license:expat)))
 
+(define-public python-inflect
+  (package
+    (name "python-inflect")
+    (version "7.5.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "inflect" version))
+              (sha256
+               (base32
+                "07spmlkmskwhxc0j5j4ms3w0f6pyv3h8iqwcbahdabklqc0riwgs"))))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pygments
+           python-pytest-bootstrap
+           python-setuptools-bootstrap
+           python-setuptools-scm-bootstrap))
+    (propagated-inputs
+     (list python-more-itertools
+           python-typeguard
+           python-typing-extensions))
+    (home-page "https://github.com/jaraco/inflect";)
+    (synopsis "Correctly generate plurals, singular nouns, ordinals, 
indefinite articles")
+    (description
+     "This Python module lets you correctly generate plurals, singular nouns,
+ordinals, indefinite articles; it also can convert numbers to words.")
+    (license license:expat)))
+
 (define-public python-iniconfig
   (package
     (name "python-iniconfig")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5179162278..18975f4b77 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -21817,28 +21817,6 @@ Freecell and similar variants of Card Solitaire such 
as Eight Off, Forecell,
 and Seahaven Towers, as well as Simple Simon boards.")
     (license license:expat)))
 
-(define-public python-inflect
-  (package
-    (name "python-inflect")
-    (version "7.5.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "inflect" version))
-              (sha256
-               (base32
-                "07spmlkmskwhxc0j5j4ms3w0f6pyv3h8iqwcbahdabklqc0riwgs"))))
-    (build-system pyproject-build-system)
-    (propagated-inputs (list python-more-itertools python-typeguard
-                             python-typing-extensions))
-    (native-inputs (list python-pygments python-pytest python-setuptools
-                         python-setuptools-scm python-wheel))
-    (home-page "https://github.com/jaraco/inflect";)
-    (synopsis "Correctly generate plurals, singular nouns, ordinals, 
indefinite articles")
-    (description
-     "This Python module lets you correctly generate plurals, singular nouns,
-ordinals, indefinite articles; it also can convert numbers to words.")
-    (license license:expat)))
-
 (define-public python-inflection
   (package
     (name "python-inflection")

Reply via email to