guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 41a61d5446b132e181bf923d3d60d77ba30942ab
Author: Kjartan Oli Agustsson <[email protected]>
AuthorDate: Wed May 28 10:43:32 2025 +0000

    gnu: Add python-jaconv.
    
    * gnu/packages/python-xyz.scm (python-jaconv): New variable.
    
    Change-Id: I2eca2ef0d3c4150d831181dffc30f51a3503bd14
    Signed-off-by: Andrew Tropin <[email protected]>
---
 gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index b6ea71e15c..11cd14e3dd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1112,6 +1112,27 @@ similar XML files, in the same way the @command{diff} 
utility does it.")
 Library.")
     (license license:expat)))
 
+(define-public python-jaconv
+  (package
+    (name "python-jaconv")
+    (version "0.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jaconv" version))
+       (sha256
+        (base32 "0qc1dx21vwlarhsg19l5rdjpjf7j7lamrcynaadf0xpj8yr79nij"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-setuptools python-wheel python-nose))
+    (home-page "https://github.com/ikegami-yukino/jaconv";)
+    (synopsis
+     "Pure-Python Japanese character interconverter for Hiragana, Katakana,
+Hankaku, Zenkaku")
+    (description
+     "jaconv (Japanese Converter) is interconverter for Hiragana, Katakana,
+Hankaku (half-width character) and Zenkaku (full-width character)")
+    (license license:expat)))
+
 (define-public python-janus
   (package
     (name "python-janus")

Reply via email to