[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/08: gnu: Add python-nbformat.
From: |
Ricardo Wurmus |
Subject: |
07/08: gnu: Add python-nbformat. |
Date: |
Fri, 4 Nov 2016 10:34:13 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 2d321bb2c572ca91830da2790aa6883e6218b42a
Author: Ricardo Wurmus <address@hidden>
Date: Tue Nov 1 13:20:37 2016 +0100
gnu: Add python-nbformat.
* gnu/packages/python.scm (python-nbformat, python2-nbformat): New
variables.
---
gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 5234dba..28b38cf 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6664,6 +6664,35 @@ Debian-related files, such as:
(define-public python2-debian
(package-with-python2 python-debian))
+(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-traitlets" ,python-traitlets)))
+ (native-inputs
+ `(("python-setuptools" ,python-setuptools)))
+ (home-page "http://jupyter.org")
+ (synopsis "Jupyter Notebook format")
+ (description "This package provides the reference implementation of the
+Jupyter Notebook format and Python APIs for working with notebooks.")
+ (license license:bsd-3)))
+
+(define-public python2-nbformat
+ (package-with-python2 python-nbformat))
+
(define-public python-chardet
(package
(name "python-chardet")
- branch master updated (6e1d7aa -> 5543604), Ricardo Wurmus, 2016/11/04
- 01/08: gnu: python-traitlets: Update to 4.2.0., Ricardo Wurmus, 2016/11/04
- 06/08: gnu: Add python-html5lib-0.9., Ricardo Wurmus, 2016/11/04
- 02/08: gnu: Add python-jupyter-core., Ricardo Wurmus, 2016/11/04
- 08/08: gnu: Add python-bleach., Ricardo Wurmus, 2016/11/04
- 05/08: gnu: Add python-testpath., Ricardo Wurmus, 2016/11/04
- 04/08: gnu: Add python-ipykernel., Ricardo Wurmus, 2016/11/04
- 03/08: gnu: Add python-jupyter-client., Ricardo Wurmus, 2016/11/04
- 07/08: gnu: Add python-nbformat.,
Ricardo Wurmus <=