From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 07/16] gnu: Add python-nbformat. Date: Fri, 4 Nov 2016 11:27:40 +0100 Message-ID: <87lgwza6ar.fsf@mdc-berlin.de> References: <20161101122046.751-1-ricardo.wurmus@mdc-berlin.de> <20161101122046.751-8-ricardo.wurmus@mdc-berlin.de> <877f8nmg1d.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]:52455) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1c2bix-0006Ly-MQ for guix-devel@gnu.org; Fri, 04 Nov 2016 06:27:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1c2biu-000551-E9 for guix-devel@gnu.org; Fri, 04 Nov 2016 06:27:51 -0400 In-Reply-To: <877f8nmg1d.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-nbformat, python2-nbformat): New >> variables. >> --- >> gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ >> 1 file changed, 28 insertions(+) >> >> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm >> index ed736ff..590ba43 100644 >> --- a/gnu/packages/python.scm >> +++ b/gnu/packages/python.scm >> @@ -6665,6 +6665,34 @@ Debian-related files, such as: >> (define-public python2-debian >> (package-with-python2 python-debian)) >> =20 >> +(define-public python-nbformat >> + (package >> + (name "python-nbformat") >> + (version "4.1.0") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (pypi-uri "nbformat" version)) >> + (sha256 >> + (base32 >> + "0mq8iki3d4mnx7wy05phss7x98mds4fqydin8lcagidp1knw1xnv")))) >> + (build-system python-build-system) >> + (arguments `(#:tests? #f)) ; no test target >> + (propagated-inputs >> + `(("python-ipython-genutils" ,python-ipython-genutils) >> + ("python-jsonschema" ,python-jsonschema) >> + ("python-jupyter-core" ,python-jupyter-core) >> + ("python-setuptools" ,python-setuptools) >> + ("python-traitlets" ,python-traitlets))) >> + (home-page "http://jupyter.org") >> + (synopsis "Jupyter Notebook format") > > Notebook or notebook? Capitalised because it=E2=80=99s a proper name. ~~ Ricardo