From mboxrd@z Thu Jan 1 00:00:00 1970 From: Federico Beffa Subject: [PATCH] Add optional dependencies to ipython. Date: Sat, 18 Jul 2015 11:25:36 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZGONG-0005Fi-0D for guix-devel@gnu.org; Sat, 18 Jul 2015 05:25:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZGONE-00070B-P3 for guix-devel@gnu.org; Sat, 18 Jul 2015 05:25:37 -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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: ricardo.wurmus@mdc-berlin.de, =?UTF-8?Q?Ludovic_Court=C3=A8s?= Cc: Guix-devel Ricardo Wurmus writes: > From 9243823abad3943bd3f4ebe4f6d18cc53c2143e0 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Thu, 21 May 2015 15:24:11 +0200 > Subject: [PATCH] gnu: python-ipython: Add optional dependencies. > > * gnu/packages/python.scm (python-ipython)[inputs]: Add optional dependencies > "python-tornado" and "python-pyzmq". > --- > gnu/packages/python.scm | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 5e4217a..9548d33 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -3016,13 +3016,15 @@ Python language binding specification.") > (base32 "1764gi5m3ff481rjk336cw6i2h4zlc0nxam9rc5m8m7yl9m4d61y")))) > (build-system python-build-system) > (outputs '("out" "doc")) > - ;; FIXME: add optional dependencies when available: pyzmq, tornado, ... > + ;; FIXME: add optional dependencies when available: pexpect > (inputs > `(("readline" ,readline) > ("python-matplotlib" ,python-matplotlib) > ("python-numpy" ,python-numpy-bootstrap) > ("python-numpydoc" ,python-numpydoc) > - ("python-nose" ,python-nose))) > + ("python-nose" ,python-nose) > + ("python-tornado" ,python-tornado) > + ("python-pyzmq" ,python-pyzmq))) > (native-inputs > `(("pkg-config" ,pkg-config) > ("python-sphinx" ,python-sphinx) I would welcome such additions because Emacs' org-mode doesn't work well with ipython and a recent improvement on that requires these additions. https://github.com/gregsexton/ob-ipython Regards, Fede