gnu: Add python-asteval.

* gnu/packages/python-xyz.scm (python-asteval): New variable.
This commit is contained in:
Ricardo Wurmus 2021-03-15 11:38:06 +01:00
parent 8b85aea49b
commit 0bd166253a
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -11586,6 +11586,27 @@ (define-public python-uncertainties
expression.")
(license license:bsd-3)))
(define-public python-asteval
(package
(name "python-asteval")
(version "0.9.23")
(source
(origin
(method url-fetch)
(uri (pypi-uri "asteval" version))
(sha256
(base32
"0f54sd4w1a72ij1bcxs2x7dk9xf8bzclawijf1z18bqx9f96l2gm"))))
(build-system python-build-system)
(native-inputs
`(("python-pytest" ,python-pytest)))
(home-page "https://github.com/newville/asteval")
(synopsis "Minimalistic evaluator of Python expressions")
(description
"This package provides a minimalistic evaluator of Python expression
using the @code{ast} module")
(license license:expat)))
(define-public python-boto
(package
(name "python-boto")