diff options
author | Wiktor Żelazny <[email protected]> | 2023-07-09 16:21:38 +0200 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2025-02-22 15:51:45 +0100 |
commit | a17961a4dcf5339391df15cba137d9849eae4618 (patch) | |
tree | 3f3664602bc4bf680eabced6d13ce1bc5fbe2c84 /gnu | |
parent | b31925665d07acbb049adf702066b95af2b58b4d (diff) |
gnu: Add python-anyascii.
* gnu/packages/python-xyz.scm (python-anyascii): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
Change-Id: If6d993da28ea447bec1f10f97ec3760ee6b3d1d6
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a877515ff5..1539f38bd1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39441,6 +39441,24 @@ and names, built from Unicode CLDR and the IANA subtag registry, if you install @code{python-language-data}.") (license license:expat))) +(define-public python-anyascii + (package + (name "python-anyascii") + (version "0.3.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "anyascii" version)) + (sha256 + (base32 + "0c27rr3fmc1cx9mkmgx94zdf9yil0napzfkwpjw2bqjghkpk4pcx")))) + (build-system pyproject-build-system) + (native-inputs (list python-flit-core python-setuptools)) + (home-page "https://anyascii.com") + (synopsis "Unicode to ASCII transliteration") + (description "@code{anyascii} converts Unicode characters to their best +ASCII representation.") + (license license:isc))) + (define-public python-geomet (package (name "python-geomet") |