diff options
| author | Kjartan Oli Agustsson <kjartanoli@outlook.com> | 2025-05-28 10:43:32 +0000 |
|---|---|---|
| committer | Andrew Tropin <andrew@trop.in> | 2025-06-11 16:44:16 +0700 |
| commit | 41a61d5446b132e181bf923d3d60d77ba30942ab (patch) | |
| tree | 3d5c384513f9e5eda9aaed662a18717f18b2904e /gnu/packages/python-xyz.scm | |
| parent | e61800b64ada9c644d0a3d27c0d1fb5806838f36 (diff) | |
gnu: Add python-jaconv.
* gnu/packages/python-xyz.scm (python-jaconv): New variable.
Change-Id: I2eca2ef0d3c4150d831181dffc30f51a3503bd14
Signed-off-by: Andrew Tropin <andrew@trop.in>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
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") |
