[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add python-ipywidgets.
From: |
Ricardo Wurmus |
Subject: |
05/08: gnu: Add python-ipywidgets. |
Date: |
Fri, 4 Nov 2016 20:23:55 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 4fe2e34409cb1aad6a19e2cf93ebeb7f555a703f
Author: Ricardo Wurmus <address@hidden>
Date: Tue Nov 1 13:20:43 2016 +0100
gnu: Add python-ipywidgets.
* gnu/packages/python.scm (python-ipywidgets, python2-ipywidgets): New
variables.
---
gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 8145938..3f0b2b3 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6868,6 +6868,37 @@ notebooks.")
(define-public python2-widgetsnbextension
(package-with-python2 python-widgetsnbextension))
+(define-public python-ipywidgets
+ (package
+ (name "python-ipywidgets")
+ (version "5.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "ipywidgets" version))
+ (sha256
+ (base32
+ "1lk0qrr5l9a0z7qkkn30hv5832whxwxymf1l576fmmad0n7hkxms"))))
+ (build-system python-build-system)
+ ;; FIXME: it's not clear how to run the tests.
+ (arguments `(#:tests? #f))
+ (propagated-inputs
+ `(("python-ipykernel" ,python-ipykernel)
+ ("python-ipython" ,python-ipython)
+ ("python-setuptools" ,python-setuptools)
+ ("python-traitlets" ,python-traitlets)
+ ("python-widgetsnbextension" ,python-widgetsnbextension)))
+ (home-page "http://ipython.org")
+ (synopsis "IPython HTML widgets for Jupyter")
+ (description "Ipywidgets are interactive HTML widgets for Jupyter
+notebooks and the IPython kernel. Notebooks come alive when interactive
+widgets are used. Users gain control of their data and can visualize changes
+in the data.")
+ (license license:bsd-3)))
+
+(define-public python2-ipywidgets
+ (package-with-python2 python-ipywidgets))
+
(define-public python-chardet
(package
(name "python-chardet")
- branch master updated (0872283 -> c27ae82), Ricardo Wurmus, 2016/11/04
- 01/08: gnu: Add python-entrypoints., Ricardo Wurmus, 2016/11/04
- 08/08: gnu: Add jupyter., Ricardo Wurmus, 2016/11/04
- 02/08: gnu: Add python-nbconvert., Ricardo Wurmus, 2016/11/04
- 04/08: gnu: Add python-widgetsnbextension., Ricardo Wurmus, 2016/11/04
- 03/08: gnu: Add python-notebook., Ricardo Wurmus, 2016/11/04
- 05/08: gnu: Add python-ipywidgets.,
Ricardo Wurmus <=
- 06/08: gnu: Add python-jupyter-console., Ricardo Wurmus, 2016/11/04
- 07/08: gnu: python-ipython: Update to 4.0.0., Ricardo Wurmus, 2016/11/04