Archived
1
0
Fork 0

gnu: Add python-pure-eval.

* gnu/packages/python-xyz.scm (python-pure-eval): New variable.
This commit is contained in:
Maxim Cournoyer 2022-03-23 00:28:15 -04:00
parent a116f7fdee
commit dc04cf5598
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -9015,6 +9015,24 @@ you're careful. The @code{backcall} package provides a way of specifying the
callback signature using a prototype function.")
(license license:bsd-3)))
(define-public python-pure-eval
(package
(name "python-pure-eval")
(version "0.2.2")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pure_eval" version))
(sha256
(base32 "1hwsm85cwqwh6d6x4vzcimla2865s6v19ms3ym81ganzyq534i9b"))))
(build-system python-build-system)
(native-inputs (list python-pytest python-setuptools-scm))
(home-page "https://github.com/alexmojaki/pure_eval")
(synopsis "Python library to evaluate abstract syntax tree nodes")
(description "The @code{pure_eval} Python library can safely evaluate
abstract syntax tree (AST) nodes without side effects.")
(license license:expat)))
(define-public python-ipython
(package
(name "python-ipython")