guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/08: gnu: Add python-jupyter-client.


From: Ricardo Wurmus
Subject: 03/08: gnu: Add python-jupyter-client.
Date: Fri, 4 Nov 2016 10:34:13 +0000 (UTC)

rekado pushed a commit to branch master
in repository guix.

commit 9ff01f2d018d65f01b1a6a66bd28c26f196719bc
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Nov 1 13:20:33 2016 +0100

    gnu: Add python-jupyter-client.
    
    * gnu/packages/python.scm (python-jupyter-client,
    python2-jupyter-client): New variables.
---
 gnu/packages/python.scm |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index da16647..0f16978 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4525,6 +4525,38 @@ without using the configuration machinery.")
 (define-public python2-jupyter-core
   (package-with-python2 python-jupyter-core))
 
+(define-public python-jupyter-client
+  (package
+    (name "python-jupyter-client")
+    (version "4.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jupyter_client" version))
+       (sha256
+        (base32
+         "1vjjrpjw7k5sh982pbjnslv7byfbfazjw9g92jvs7dz5qbx556n9"))))
+    (build-system python-build-system)
+    ;; Tests fail because of missing native python kernel which I assume is
+    ;; provided by the ipython package, which we cannot use because it would
+    ;; cause a dependency cycle.
+    (arguments `(#:tests? #f))
+    (propagated-inputs
+     `(("python-pyzmq" ,python-pyzmq)
+       ("python-traitlets" ,python-traitlets)
+       ("python-jupyter-core" ,python-jupyter-core)))
+    (home-page "http://jupyter.org/";)
+    (synopsis "Jupyter protocol implementation and client libraries")
+    (description
+     "The @code{jupyter_client} package contains the reference implementation
+of the Jupyter protocol.  It also provides client and kernel management APIs
+for working with kernels, and the @code{jupyter kernelspec} entrypoint for
+installing @code{kernelspec}s for use with Jupyter frontends.")
+    (license license:bsd-3)))
+
+(define-public python2-jupyter-client
+  (package-with-python2 python-jupyter-client))
+
 (define-public python-ipython
   (package
     (name "python-ipython")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]