From 92181868677d447e8e964f17b149234a261a39ed Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 30 Aug 2025 07:47:03 -0300 Subject: [PATCH] gnu: Add python-unicodeitplus. * gnu/packages/python-xyz.scm (python-unicodeitplus): New variable. Change-Id: Ief9e0f558510b0df49c2cb51cb559694c7ca0c96 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9d96e5a2e13f1dcefb3faffcf05c83310f119f91..ee64b439da2190f748885c15a03e7c72847022ba 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -39020,6 +39020,31 @@ expression.") standard Python module.") (license license:asl2.0))) +(define-public python-unicodeitplus + (package + (name "python-unicodeitplus") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "unicodeitplus" version)) + (sha256 + (base32 "1mssdjih7dqz25lrb2pyjg2yvab0b9c7a5k1llx1yzkkqbqyh74c")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-setuptools-scm)) + (propagated-inputs + (list python-lark)) + (home-page "https://github.com/HDembinski/unicodeitplus") + (synopsis "Convert simple LaTeX to an Unicode approximation") + (description + "This package provides a more complete LaTeX to Unicode converter than +@code{unicodeit} using a parser generated from @acronym{EBNF, Extended +Backus-Naur Form} with the Lark library.") + (license license:bsd-3))) + (define-public python-unidecode (package (name "python-unidecode")