gnu: Add python-widgetsnbextension.

* gnu/packages/python.scm (python-widgetsnbextension,
python2-widgetsnbextension): New variables.
This commit is contained in:
Ricardo Wurmus 2016-11-01 13:20:42 +01:00 committed by Ricardo Wurmus
parent a0d62280f5
commit d55724ed5b
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 26 additions and 0 deletions

View File

@ -6842,6 +6842,32 @@ interactive computing.")
(define-public python2-notebook (define-public python2-notebook
(package-with-python2 python-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 (define-public python-chardet
(package (package
(name "python-chardet") (name "python-chardet")