gnu: python-hy: Update to 0.17.0.

* gnu/packages/python-xyz.scm (python-hy): Update to 0.17.0.
[propagated-inputs]: Add python-fastentrypoints and python-funcparserlib.

Signed-off-by: Brett Gilio <brettg@gnu.org>
This commit is contained in:
Jesse Gibbons 2019-12-25 01:23:09 -06:00 committed by Brett Gilio
parent c5eb8cf844
commit c215051dcf
No known key found for this signature in database
GPG key ID: 672243C4A03F0EEE

View file

@ -8513,13 +8513,13 @@ (define-public python2-rply
(define-public python-hy
(package
(name "python-hy")
(version "0.13.0")
(version "0.17.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "hy" version))
(sha256
(base32
"19sfymaksx9jhksfnb15ahid46mzrhdfzz6yy2craz2qnzvpmky8"))))
"1gdbqsirsdxj320wnp7my5awzs1kfs6m4fqmkzbd1zd47qzj0zfi"))))
(build-system python-build-system)
(arguments
'(#:phases
@ -8538,7 +8538,11 @@ (define-public python-hy
(propagated-inputs
`(("python-astor" ,python-astor)
("python-clint" ,python-clint)
("python-rply" ,python-rply)))
("python-rply" ,python-rply)
("python-fastentrypoints"
,python-fastentrypoints)
("python-funcparserlib"
,python-funcparserlib)))
(home-page "http://hylang.org/")
(synopsis "Lisp frontend to Python")
(description