guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 12/16] gnu: Add python-widgetsnbextension.


From: Roel Janssen
Subject: Re: [PATCH 12/16] gnu: Add python-widgetsnbextension.
Date: Tue, 01 Nov 2016 19:11:38 +0100
User-agent: mu4e 0.9.17; emacs 25.1.1

Ricardo Wurmus writes:

> * 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 bd04c80..2611154 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -6857,6 +6857,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")

LGTM!

Kind regards,
Roel Janssen



reply via email to

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