guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#64541] [PATCH 1/2] gnu: Add python-anyascii.


From: Wiktor Żelazny
Subject: [bug#64541] [PATCH 1/2] gnu: Add python-anyascii.
Date: Sun, 9 Jul 2023 16:21:38 +0200

* gnu/packages/python-xyz.scm (python-anyascii): New variable.
---
 gnu/packages/python-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f196d7a816..6e1d25cd6c 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33003,6 +33003,24 @@ (define-public python-langcodes
 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))
+    (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")
-- 
2.41.0






reply via email to

[Prev in Thread] Current Thread [Next in Thread]