guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add python-matplotlib-inline.


From: guix-commits
Subject: 01/02: gnu: Add python-matplotlib-inline.
Date: Sat, 18 Sep 2021 17:27:02 -0400 (EDT)

glv pushed a commit to branch core-updates-frozen
in repository guix.

commit cbdd76c493e1f76ad9cb3b2e0fcc73b9591b768a
Author: Guillaume Le Vaillant <glv@posteo.net>
AuthorDate: Sat Sep 18 23:05:29 2021 +0200

    gnu: Add python-matplotlib-inline.
    
    * gnu/packages/python-xyz.scm (python-matplotlib-inline): New variable.
---
 gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e9c0f65..1f45da0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5973,6 +5973,30 @@ toolkits.")
     (description (package-description python-matplotlib))
     (license (package-license python-matplotlib))))
 
+(define-public python-matplotlib-inline
+  (package
+    (name "python-matplotlib-inline")
+    (version "0.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "matplotlib-inline" version))
+       (sha256
+        (base32 "1vilzwj3xp00mxprmmn1hlafm3p23vn56s46kx3ra4qd5signjx0"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-matplotlib" ,python-matplotlib)
+       ("python-traitlets" ,python-traitlets)))
+    (arguments
+     ;; Tests disabled because of a circular dependency with ipython.
+     `(#:tests? #f))
+    (home-page "https://github.com/ipython/matplotlib-inline";)
+    (synopsis "Inline Matplotlib backend for Jupyter")
+    (description
+     "This package provides a Matplotlib inline back-end for IPython and
+Jupyter.")
+    (license license:bsd-3)))
+
 (define-public python-matplotlib-venn
   (package
     (name "python-matplotlib-venn")



reply via email to

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