From 9111b7510daacb65da4ebe9d11c600cd210c86f1 Mon Sep 17 00:00:00 2001 From: Cayetano Santos Date: Fri, 20 Jun 2025 12:29:16 +0200 Subject: [PATCH] gnu: Add python-calmjs-parse. * gnu/packages/python-xyz.scm (python-calmjs-parse): New variable. Change-Id: Id8bf38a30e419fe9e1b501f05e3303f46b6e5bfa Modified-by: Sharlatan Hellseher Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5e1d0fefcb66bde39bbe4b4110afbcce7c739958..50a7eff7bb755dec7b01e9c66146602b566f0d65 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -552,6 +552,29 @@ using NumPy-like idioms.") line drawing algorithm}.") (license license:expat))) +(define-public python-calmjs-parse + (package + (name "python-calmjs-parse") + (version "1.3.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/calmjs/calmjs.parse/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08dmi4chamk5dbdpvrc0nb09iybfhj3wqwxgffiqnkj7030qhqb8")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) + (propagated-inputs (list python-ply)) + (home-page "https://github.com/calmjs/calmjs.parse/") + (synopsis "Parsers for ECMA standards") + (description + "@code{Calmjs-parse} is a collection of helper libraries for +understanding ECMA script.") + (license license:expat))) + (define-public python-couleur (package (name "python-couleur")