diff options
author | Antero Mejr <antero@mailbox.org> | 2022-06-15 20:22:13 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-09-02 09:15:24 +0200 |
commit | 2c37b33796ac768e24853c5f813420e3bf1569c7 (patch) | |
tree | 808d6219178edb1785c9676522d916232cd3fb12 /gnu/packages/cpp.scm | |
parent | 9179775b0535ddf038d45f1355f759c4d6dc40dc (diff) | |
download | guix-2c37b33796ac768e24853c5f813420e3bf1569c7.tar.gz |
gnu: Add python-jsonnet.
* gnu/packages/cpp.scm (python-jsonnet): New variable.
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 11777340ef..5402e333f5 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -32,6 +32,7 @@ ;;; Copyright © 2022, 2023 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2022, 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2022 Antero Mejr <antero@mailbox.org> ;;; Copyright © 2023 Sughosha <Sughosha@proton.me> ;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2023 Liliana Marie Prikler <liliana.prikler@gmail.com> @@ -1982,6 +1983,16 @@ of reading and writing XML.") syntax with variables, conditions, functions and more.") (license license:asl2.0))) +(define-public python-jsonnet + (package + (inherit jsonnet) + (name "python-jsonnet") + (build-system python-build-system) + (arguments '()) + (synopsis "Python bindings for Jsonnet, the data templating language") + (description "This package provides a Python library named @code{_jsonnet} +which can evaluate Jsonnet files and expressions."))) + (define-public simdjson (package (name "simdjson") |