diff options
author | BonfaceKilz <[email protected]> | 2021-04-15 12:48:58 +0300 |
---|---|---|
committer | Efraim Flashner <[email protected]> | 2021-04-29 10:01:16 +0300 |
commit | f2b2016bfd19fa99ba8083ecb80efb8a5e7d35e3 (patch) | |
tree | 921bdb088cadfa158ca4c9333e9b8acb95f24d51 | |
parent | 685e4733ad2ec8ad3e6f575bf561f14b988bef55 (diff) |
gnu: Add python-hissp.
* gnu/packages/python-xyz.scm (python-hissp): New variable.
Signed-off-by: Efraim Flashner <[email protected]>
-rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a17424e7a6..3fbb7b3366 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -88,7 +88,7 @@ ;;; Copyright © 2020 Malte Frank Gerdes <[email protected]> ;;; Copyright © 2020 Joseph LaFreniere <[email protected]> ;;; Copyright © 2020 Tim Gesthuizen <[email protected]> -;;; Copyright © 2020 Bonface Munyoki Kilyungi <[email protected]> +;;; Copyright © 2020, 2021 Bonface Munyoki Kilyungi <[email protected]> ;;; Copyright © 2020 Ekaitz Zarraga <[email protected]> ;;; Copyright © 2020 Diego N. Barbato <[email protected]> ;;; Copyright © 2020 Leo Prikler <[email protected]> @@ -11640,6 +11640,25 @@ its Lisp code into the Python Abstract Syntax Tree, you have the whole world of Python at your fingertips, in Lisp form.") (license license:expat))) +(define-public python-hissp + (package + (name "python-hissp") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hissp" version)) + (sha256 + (base32 + "0yns7f0q699zn2ziagyas2nkndl7mp1hhssv9x9mpl7jxj2p5myw")))) + (build-system python-build-system) + (home-page "https://github.com/gilch/hissp") + (synopsis "It's Python with a Lissp") + (description "Hissp is a modular Lisp implementation that compiles to a +functional subset of Python—Syntactic macro metaprogramming with full access +to the Python ecosystem.") + (license license:asl2.0))) + (define-public python2-functools32 (package (name "python2-functools32") |