[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: gnu: Add python-widgetsnbextension.
From: |
Ricardo Wurmus |
Subject: |
04/08: gnu: Add python-widgetsnbextension. |
Date: |
Fri, 4 Nov 2016 20:23:55 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit d55724ed5b07b218131dcffcdf694ce98a87da5e
Author: Ricardo Wurmus <address@hidden>
Date: Tue Nov 1 13:20:42 2016 +0100
gnu: Add python-widgetsnbextension.
* gnu/packages/python.scm (python-widgetsnbextension,
python2-widgetsnbextension): New variables.
---
gnu/packages/python.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 453e7e6..8145938 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -6842,6 +6842,32 @@ interactive computing.")
(define-public python2-notebook
(package-with-python2 python-notebook))
+(define-public python-widgetsnbextension
+ (package
+ (name "python-widgetsnbextension")
+ (version "1.2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "widgetsnbextension" version))
+ (sha256
+ (base32
+ "0lff2mrwrgsa1mxmwx3phl9xvy0jqfpg6khbmxy53jbq56rwy666"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-notebook" ,python-notebook)))
+ (native-inputs
+ `(("python-nose" ,python-nose)
+ ("python-setuptools" ,python-setuptools)))
+ (home-page "http://ipython.org")
+ (synopsis "IPython HTML widgets for Jupyter")
+ (description "This package provides interactive HTML widgets for Jupyter
+notebooks.")
+ (license license:bsd-3)))
+
+(define-public python2-widgetsnbextension
+ (package-with-python2 python-widgetsnbextension))
+
(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 <=
- 03/08: gnu: Add python-notebook., Ricardo Wurmus, 2016/11/04
- 05/08: gnu: Add python-ipywidgets., Ricardo Wurmus, 2016/11/04
- 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