guix-commits
[Top][All Lists]
Advanced

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

26/29: gnu: Add python-jupyterlab-widgets.


From: guix-commits
Subject: 26/29: gnu: Add python-jupyterlab-widgets.
Date: Tue, 13 Apr 2021 07:51:55 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 4cb6120584e6d19ca8ac5756c48ac3cca660145d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Apr 13 13:14:49 2021 +0200

    gnu: Add python-jupyterlab-widgets.
    
    * gnu/packages/jupyter.scm (python-jupyterlab-widgets): New variable.
---
 gnu/packages/jupyter.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index 796a8dc..52869db 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -242,6 +242,27 @@ Jupyter Python packages that require a pre-build step that 
may include
 JavaScript build steps.")
     (license license:bsd-3)))
 
+(define-public python-jupyterlab-widgets
+  (package
+    (name "python-jupyterlab-widgets")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "jupyterlab_widgets" version))
+       (sha256
+        (base32
+         "0y7vhhas3qndiypcpcfnhrj9n92v2w4hdc86nn620s9h9nl2j6jw"))))
+    (build-system python-build-system)
+    (native-inputs
+     `(("python-jupyter-packaging" ,python-jupyter-packaging)
+       ("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/jupyter-widgets/ipywidgets";)
+    (synopsis "Interactive widgets for Jupyter Notebooks")
+    (description "ipywidgets, also known as jupyter-widgets or simply widgets,
+are interactive HTML widgets for Jupyter notebooks and the IPython kernel.")
+    (license license:bsd-3)))
+
 (define-public python-nbclient
   (package
     (name "python-nbclient")



reply via email to

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