guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: Add python-ipympl.


From: guix-commits
Subject: 02/05: gnu: Add python-ipympl.
Date: Fri, 6 May 2022 07:12:53 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ea3cfeb665e4221ded31c896496f73c8aac01022
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri May 6 10:48:08 2022 +0200

    gnu: Add python-ipympl.
    
    * gnu/packages/jupyter.scm (python-ipympl): New variable.
---
 gnu/packages/jupyter.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/jupyter.scm b/gnu/packages/jupyter.scm
index dd5d2a5a55..97f7a5e73d 100644
--- a/gnu/packages/jupyter.scm
+++ b/gnu/packages/jupyter.scm
@@ -517,6 +517,34 @@ sending queries to an SPARQL endpoint and fetching & 
presenting the results in
 a notebook.")
     (license license:bsd-3)))
 
+(define-public python-ipympl
+  (package
+    (name "python-ipympl")
+    (version "0.9.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "ipympl" version))
+       (sha256
+        (base32 "11rppjdqzgs4pfiq8gww5xkpbk21fp86vvv839v56b9rqq06j2b4"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     (list python-ipython
+           python-ipython-genutils
+           python-ipywidgets
+           python-matplotlib
+           python-numpy
+           python-pillow
+           python-traitlets))
+    (native-inputs
+     (list python-jupyter-packaging))
+    (home-page "https://matplotlib.org/ipympl/";)
+    (synopsis "Matplotlib Jupyter Extension")
+    (description "Leveraging the Jupyter interactive widgets framework, ipympl
+enables the interactive features of matplotlib in the Jupyter notebook and in
+JupyterLab.")
+    (license license:bsd-3)))
+
 (define-public python-voila
   (package
     (name "python-voila")



reply via email to

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