[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: Add python-jupyter-core.
From: |
Ricardo Wurmus |
Subject: |
02/08: gnu: Add python-jupyter-core. |
Date: |
Fri, 4 Nov 2016 10:34:12 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 4263b06fa2bf3e25ec21fa39822b548fc3a6e8ca
Author: Ricardo Wurmus <address@hidden>
Date: Tue Nov 1 13:20:32 2016 +0100
gnu: Add python-jupyter-core.
* gnu/packages/python.scm (python-jupyter-core, python2-jupyter-core):
New variables.
---
gnu/packages/python.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index c612846..da16647 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4500,6 +4500,31 @@ without using the configuration machinery.")
(define-public python2-traitlets
(package-with-python2 python-traitlets))
+(define-public python-jupyter-core
+ (package
+ (name "python-jupyter-core")
+ (version "4.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append (pypi-uri "jupyter_core" version)))
+ (sha256
+ (base32
+ "177d9csqldzhsh6xs1p4nf6lzvhzyg6gklqjf69lxgxyadx87v24"))))
+ (build-system python-build-system)
+ ;; FIXME: not sure how to run the tests
+ (arguments `(#:tests? #f))
+ (propagated-inputs
+ `(("python-traitlets" ,python-traitlets)))
+ (home-page "http://jupyter.org/")
+ (synopsis "Jupyter base package")
+ (description
+ "Jupyter core is the base package on which Jupyter projects rely.")
+ (license license:bsd-3)))
+
+(define-public python2-jupyter-core
+ (package-with-python2 python-jupyter-core))
+
(define-public python-ipython
(package
(name "python-ipython")
- 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 <=
- 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, 2016/11/04