From 49cd82fb378aaaa5475a6a478e9f1e2f7fa55da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Gia=20Phong?= Date: Sat, 14 Feb 2026 23:59:19 +0900 Subject: [PATCH] gnu: Add python-speedy-antlr-tool. * gnu/packages/python-xyz.scm (python-speedy-antlr-tool): New variable. Change-Id: Ia88462b4c20ed8dc7053bd3f47394a586236ab0f Signed-off-by: Liliana Marie Prikler --- 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 47636767d1..722a6c9c5d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35830,6 +35830,31 @@ instance in spelling correction, predictive typing, to help disabled people write text fast, and for various text generation, statistics, and modeling tasks.") (license license:expat))) +(define-public python-speedy-antlr-tool + (package + (name "python-speedy-antlr-tool") + (version "1.4.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/amykyta3/speedy-antlr-tool") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bj67n3f6admjc7mfgnksb35s983inw2mh27d7wfp1xf697h0yp3")))) + (build-system pyproject-build-system) + (arguments '(#:tests? #f)) ;no test + (native-inputs (list python-setuptools python-setuptools-scm)) + (propagated-inputs (list python-antlr4-runtime python-jinja2)) + (home-page "https://speedy-antlr-tool.readthedocs.io") + (synopsis "Generate ANTLR parser as Python extension module") + (description + "This tool generates a Python extension that runs your parser +using ANTLR's C++ target, and then translates the parsed tree +back into Python.") + (license license:bsd-3))) + (define-public python-speg (package (name "python-speg")