summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-18 12:37:20 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:12 +0100
commitcad01598b6cb9778c9524e5a9f5ac8e0907d3297 (patch)
treec3608e20dfa16a6d128b2ca8699a41759a8945fd /gnu/packages/python-xyz.scm
parentaf1aa73f81fb4800b92b22de6423fd57c817947a (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm17
1 files changed, 9 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 34f0e621f6..bb2b3f34e9 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7633,15 +7633,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