From mboxrd@z Thu Jan 1 00:00:00 1970 From: Danny Milosavljevic Subject: [PATCH] gnu: Add inputs for xonsh. Date: Thu, 29 Sep 2016 12:50:16 +0200 Message-ID: <20160929105016.15727-1-dannym@scratchpost.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------2.10.0" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57667) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bpYvE-0000hK-Ig for guix-devel@gnu.org; Thu, 29 Sep 2016 06:50:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bpYv8-0003Z9-F4 for guix-devel@gnu.org; Thu, 29 Sep 2016 06:50:35 -0400 Received: from dd1012.kasserver.com ([85.13.128.8]:36725) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bpYv8-0003YX-8Z for guix-devel@gnu.org; Thu, 29 Sep 2016 06:50:30 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org This is a multi-part message in MIME format. --------------2.10.0 Content-Type: text/plain; charset=UTF-8; format=fixed Content-Transfer-Encoding: quoted-printable * gnu/packages/shells.scm (xonsh): Add inputs. --- gnu/packages/shells.scm | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) --------------2.10.0 Content-Type: text/x-patch; name="0001-gnu-Add-inputs-for-xonsh.patch" Content-Disposition: attachment; filename="0001-gnu-Add-inputs-for-xonsh.patch" Content-Transfer-Encoding: quoted-printable diff --git a/gnu/packages/shells.scm b/gnu/packages/shells.scm index c165f99..e8ad701 100644 --- a/gnu/packages/shells.scm +++ b/gnu/packages/shells.scm @@ -281,8 +281,23 @@ ksh, and tcsh.") (uri (pypi-uri "xonsh" version)) (sha256 (base32 - "0byxd9kjl99q2pyvjh9jy18l0di1i35wr0qqgnw4i6jh6ig3zcki")))) + "0byxd9kjl99q2pyvjh9jy18l0di1i35wr0qqgnw4i6jh6ig3zcki")) + (modules '((guix build utils))) + (snippet + `(begin + ;; Delete bundled ply. + (delete-file-recursively "xonsh/ply") + (substitute* '("setup.py") + (("'xonsh\\.ply',") "")) + #t)))) (build-system python-build-system) + (native-inputs + `(("python-numpydoc" ,python-numpydoc))) + (inputs + ;; TODO jupyter distro cloud Sphinx-Theme + `(("python-ply" ,python-ply) + ("python-sphinx" ,python-sphinx) + ("python-prompt-toolkit" ,python-prompt-toolkit))) (home-page "http://xon.sh/") (synopsis "Python-ish shell") (description --------------2.10.0--