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

commit 41e1d792906f650ef429cae04e25fcec74c104a9
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Fri Jul 18 12:37:20 2025 +0100

    gnu: python-unidecode: Update to 1.4.0.
    
    * gnu/packages/python-xyz.scm (python-unidecode): Update to 1.4.0.
    [native-inputs]: Remove python-wheel; add python-pytest.
    
    Change-Id: I7bf733a3d0d61d3a698d0c42898416e84ced8f0f
---
 gnu/packages/python-xyz.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 10e7f7ac78..702efebee8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7400,15 +7400,16 @@ Capabilities include:
 (define-public python-unidecode
   (package
     (name "python-unidecode")
-    (version "1.3.8")
-    (source (origin
-             (method url-fetch)
-             (uri (pypi-uri "Unidecode" version))
-             (sha256
-              (base32
-               "1x620s4dk4d501pivhlfzbi2d1r5fnm9cssqwkn76f7d8sfk9nyg"))))
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "Unidecode" version))
+       (sha256
+        (base32 "08rbx8vxsnj06cvrdxy80zrn9hk25lwcqfh2fdjng2rk1189hdff"))))
     (build-system pyproject-build-system)
-    (native-inputs (list python-setuptools python-wheel))
+    (native-inputs
+     (list python-pytest python-setuptools))
     (home-page "https://pypi.org/project/Unidecode/";)
     (synopsis "ASCII transliterations of Unicode text")
     (description

Reply via email to