summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-15 20:58:44 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:05 +0100
commit86d8f820ec4bb4ecf6ac890cdbfa67f34d784e1f (patch)
treeb4bbd48c461b410c7828c73f4d041a4ce9a14607 /gnu/packages/python-xyz.scm
parent7403fdb9c2e209b7e6fb51fca2fd5c56088d272c (diff)
gnu: python-pyicu: Update to 2.15.2.
* gnu/packages/python-xyz.scm (python-pyicu): Update to 2.15.2. [source] <uri>: Adjust archie name according to PyPI. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add pkg-config and python-setuptools. Change-Id: I3da31d4536590871230a0945e3af94010c3a9d8a
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm16
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f7d9b80f1a..a2e4054143 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -6092,19 +6092,21 @@ Prefix) - Encode and decode data structures.")
(define-public python-pyicu
(package
(name "python-pyicu")
- (version "2.14")
+ (version "2.15.2")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "PyICU" version))
+ (uri (pypi-uri "pyicu" version))
(sha256
- (base32
- "0ci1l21b79xka80lf0bgmahfskqa8mw6k714fzalwmawpn9fpixc"))))
- (build-system python-build-system)
+ (base32 "13srrv5lczr0s74hx2kffwdhfg6flpvi2qpj75lfqz7ivzp7f7jn"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list pkg-config
+ python-pytest
+ python-setuptools
+ python-six))
(inputs
(list icu4c))
- (native-inputs
- (list python-pytest python-six))
(home-page "https://gitlab.pyicu.org/main/pyicu")
(synopsis "Python extension wrapping the ICU C++ API")
(description