mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-matplotlib-inline: Update to 0.1.7.
* gnu/packages/python-xyz.scm (python-matplotlib-inline): Update to 0.1.7. [source] <pypi-uri>: Fix archive name adjusting "-" to "_". [build-system]: Use pyproject. [arguments] <phases>: Delete 'sanity-check. [native-inputs]: Add python-setuptools. Change-Id: I34b99d1cbf8faf33ee3273e4a2d367f1e1b551c8
This commit is contained in:
parent
11830cd321
commit
4dc857d4a4
1 changed files with 16 additions and 8 deletions
|
@ -11585,19 +11585,27 @@ toolkits.")
|
||||||
(define-public python-matplotlib-inline
|
(define-public python-matplotlib-inline
|
||||||
(package
|
(package
|
||||||
(name "python-matplotlib-inline")
|
(name "python-matplotlib-inline")
|
||||||
(version "0.1.3")
|
(version "0.1.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "matplotlib-inline" version))
|
(uri (pypi-uri "matplotlib_inline" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1vilzwj3xp00mxprmmn1hlafm3p23vn56s46kx3ra4qd5signjx0"))))
|
(base32 "145bl0ppy4cz1fii3pfixd0fi1jfmkcbsq3bw4b3vgk6qqzb48w4"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
|
||||||
(list python-matplotlib python-traitlets))
|
|
||||||
(arguments
|
(arguments
|
||||||
;; Tests disabled because of a circular dependency with ipython.
|
(list
|
||||||
`(#:tests? #f))
|
;; Tests disabled because of a circular dependency with IPython.
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
;; Disabled because of a circular dependency with IPython.
|
||||||
|
(delete 'sanity-check))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-setuptools))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-matplotlib
|
||||||
|
python-traitlets))
|
||||||
(home-page "https://github.com/ipython/matplotlib-inline")
|
(home-page "https://github.com/ipython/matplotlib-inline")
|
||||||
(synopsis "Inline Matplotlib backend for Jupyter")
|
(synopsis "Inline Matplotlib backend for Jupyter")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue