diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-11-01 13:20:42 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-04 21:23:06 +0100 |
commit | d55724ed5b07b218131dcffcdf694ce98a87da5e (patch) | |
tree | aa1885c83c3f2a6df3596bba2307f28144c42d39 /gnu | |
parent | a0d62280f56050848b8f021db28c857a56d6f7dc (diff) | |
download | patches-d55724ed5b07b218131dcffcdf694ce98a87da5e.tar patches-d55724ed5b07b218131dcffcdf694ce98a87da5e.tar.gz |
gnu: Add python-widgetsnbextension.
* gnu/packages/python.scm (python-widgetsnbextension,
python2-widgetsnbextension): New variables.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 453e7e689a..8145938d05 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") |