From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 14/16] gnu: Add python-jupyter-console. Date: Fri, 4 Nov 2016 17:47:42 +0100 Message-ID: <87eg2r9opd.fsf@mdc-berlin.de> References: <20161101122046.751-1-ricardo.wurmus@mdc-berlin.de> <20161101122046.751-15-ricardo.wurmus@mdc-berlin.de> <87ziljnk2j.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39941) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c2hem-0004Qm-Ls for guix-devel@gnu.org; Fri, 04 Nov 2016 12:47:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c2hej-00080k-HF for guix-devel@gnu.org; Fri, 04 Nov 2016 12:47:56 -0400 In-Reply-To: <87ziljnk2j.fsf@gnu.org> 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: Roel Janssen Cc: guix-devel@gnu.org Roel Janssen writes: > Ricardo Wurmus writes: > >> * gnu/packages/python.scm (python-jupyter-console, >> python2-jupyter-console): New variable. >> --- >> gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++ >> 1 file changed, 29 insertions(+) >> >> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm >> index 50a0edd..519b93d 100644 >> --- a/gnu/packages/python.scm >> +++ b/gnu/packages/python.scm >> @@ -6914,6 +6914,35 @@ in the data.") >> (define-public python2-ipywidgets >> (package-with-python2 python-ipywidgets)) >> =20 >> +(define-public python-jupyter-console >> + (package >> + (name "python-jupyter-console") >> + (version "5.0.0") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (pypi-uri "jupyter_console" version)) >> + (sha256 >> + (base32 >> + "04acmkwsi99rcg3vb54c6n492zv35s92h2ahabc0w6wj976cipvx")))) >> + (build-system python-build-system) >> + ;; FIXME: it's not clear how to run the tests. >> + (arguments `(#:tests? #f)) >> + (propagated-inputs >> + `(("python-ipykernel" ,python-ipykernel) >> + ("python-ipython" ,python-ipython) >> + ("python-jupyter-client" ,python-jupyter-client) >> + ("python-prompt-toolkit" ,python-prompt-toolkit) >> + ("python-pygments" ,python-pygments) >> + ("python-setuptools" ,python-setuptools))) >> + (home-page "https://jupyter.org") >> + (synopsis "Jupyter terminal console") >> + (description "Jupyter terminal console") > > How about: > "This package provides a terminal window in the browser to directly > access the machine Jupyter is running on." Oh, I forgot to edit the description here. I=E2=80=99ve changed it to th= is: "This package provides a terminal-based console frontend for Jupyter kernels. It also allows for console-based interaction with non-Python Jupyter kernels such as IJulia and IRKernel." ~~ Ricardo