diff options
| author | Cayetano Santos <csantosb@inventati.org> | 2025-06-20 12:29:16 +0200 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-20 13:53:50 +0100 |
| commit | 9111b7510daacb65da4ebe9d11c600cd210c86f1 (patch) | |
| tree | 27e855154f09ee554772df68f1660f803037ee4b | |
| parent | 667470e2613991535cb98aab4c5629261636e65a (diff) | |
gnu: Add python-calmjs-parse.
* gnu/packages/python-xyz.scm (python-calmjs-parse): New variable.
Change-Id: Id8bf38a30e419fe9e1b501f05e3303f46b6e5bfa
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 5e1d0fefcb..50a7eff7bb 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") |
