From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:59789) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iiiLI-0006BB-Ck for guix-patches@gnu.org; Sat, 21 Dec 2019 12:15:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iiiLG-0004tv-VZ for guix-patches@gnu.org; Sat, 21 Dec 2019 12:15:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42769) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iiiLG-0004t6-Pz for guix-patches@gnu.org; Sat, 21 Dec 2019 12:15:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iiiLG-0005aQ-LJ for guix-patches@gnu.org; Sat, 21 Dec 2019 12:15:02 -0500 Subject: [bug#38554] [PATCH v2 3/3] gnu: python-hy: Update to 0.17.0. References: <660a10a1f02b4818a28dfea58b544956437d4b66.camel@gmail.com> In-Reply-To: <660a10a1f02b4818a28dfea58b544956437d4b66.camel@gmail.com> Resent-Message-ID: Message-ID: From: Jesse Gibbons Content-Type: text/plain; charset="UTF-8" Date: Sat, 21 Dec 2019 10:14:36 -0700 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38554 <38554@debbugs.gnu.org> * gnu/packages/python-xyz.scm (python-hy): Update to 0.17.0. [inputs]: Add python-fastentrypoints, python-funcparserlib. Fixes: https://lists.gnu.org/archive/html/bug-guix/2019-12/msg00034.html. --- gnu/packages/python-xyz.scm | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 906bd9c8d2..c5dc022475 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8514,20 +8514,20 @@ with a new public API, and RPython support.") (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 (modify-phases %standard-phases - (add-before 'install 'set-HOME - (lambda _ - (setenv "HOME" "/tmp"))) + (add-before 'install 'set-HOME + (lambda _ + (setenv "HOME" "/tmp"))) (replace 'check (lambda _ ;; Tests require write access to HOME. @@ -8539,8 +8539,10 @@ with a new public API, and RPython support.") (propagated-inputs `(("python-astor" ,python-astor) ("python-clint" ,python-clint) - ("python-rply" ,python-rply))) - (home-page "http://hylang.org/") + ("python-rply" ,python-rply) + ("python-fastentrypoints" ,python-fastentrypoints) + ("python-funcparserlib" ,python-funcparserlib))) + (home-page "http://docs.hylang.org/") (synopsis "Lisp frontend to Python") (description "Hy is a dialect of Lisp that's embedded in Python. Since Hy transforms