gnu: Add python-matplotlib-inline.

* gnu/packages/python-xyz.scm (python-matplotlib-inline): New variable.
This commit is contained in:
Guillaume Le Vaillant 2021-09-18 23:05:29 +02:00
parent 19c9c266ae
commit cbdd76c493
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -5973,6 +5973,30 @@ (define-public python-matplotlib-documentation
(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")