summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-09 17:36:41 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:00 +0100
commitaa04ed1d2d437ee08fad873f59e750771a0353e8 (patch)
treee493c680e1b103b0bb7d19b014b72a4f8bee9857 /gnu/packages/python-xyz.scm
parenta27d4166cee285414f397242ff3b864442ae92aa (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 16 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1c91898a09..601f6b239d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -11561,19 +11561,27 @@ toolkits.")
(define-public python-matplotlib-inline
(package
(name "python-matplotlib-inline")
- (version "0.1.3")
+ (version "0.1.7")
(source
(origin
(method url-fetch)
- (uri (pypi-uri "matplotlib-inline" version))
+ (uri (pypi-uri "matplotlib_inline" version))
(sha256
- (base32 "1vilzwj3xp00mxprmmn1hlafm3p23vn56s46kx3ra4qd5signjx0"))))
- (build-system python-build-system)
- (propagated-inputs
- (list python-matplotlib python-traitlets))
+ (base32 "145bl0ppy4cz1fii3pfixd0fi1jfmkcbsq3bw4b3vgk6qqzb48w4"))))
+ (build-system pyproject-build-system)
(arguments
- ;; Tests disabled because of a circular dependency with ipython.
- `(#:tests? #f))
+ (list
+ ;; 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")
(synopsis "Inline Matplotlib backend for Jupyter")
(description