summaryrefslogtreecommitdiff
path: root/gnu/packages/python-science.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2026-02-21 17:07:01 +0000
committerDanny Milosavljevic <dannym@friendly-machines.com>2026-02-21 21:52:40 +0100
commita8927662b3ca3cd3966d2b0a291b8a46c2056d14 (patch)
tree5a6d8b78aef5e602addf7188ee8f011d1623bc1a /gnu/packages/python-science.scm
parent405d8647fff28167418d8d874e2dcca77f8e35bb (diff)
gnu: Add python-pytest-pyvista.
* gnu/packages/python-science.scm (python-pytest-pyvista): New variable. Change-Id: I03233bf19ba66bf4f33cf92e60de24da8c661562
Diffstat (limited to 'gnu/packages/python-science.scm')
-rw-r--r--gnu/packages/python-science.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 4e1f01fc815..d15a67f6cd1 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -5504,6 +5504,30 @@ structured and declarative manner. It is inspired by the R package ggplot2
5504and aims to provide a similar API and functionality in Python.") 5504and aims to provide a similar API and functionality in Python.")
5505 (license license:expat))) 5505 (license license:expat)))
5506 5506
5507(define-public python-pytest-pyvista
5508 (package
5509 (name "python-pytest-pyvista")
5510 (version "0.3.2")
5511 (source
5512 (origin
5513 (method url-fetch)
5514 (uri (pypi-uri "pytest_pyvista" version))
5515 (sha256
5516 (base32 "0hgk3a5wwymk3k7ih4lsmkd44dfnsd842zv5859izqxkw74j2xpn"))))
5517 (build-system pyproject-build-system)
5518 (arguments
5519 (list
5520 ;; No tests included in the PyPI tarball.
5521 #:tests? #f))
5522 (propagated-inputs (list python-numpy python-pillow python-pytest-8))
5523 (native-inputs (list python-flit-core))
5524 (home-page "https://github.com/pyvista/pytest-pyvista")
5525 (synopsis "Pytest plugin for comparing PyVista plot images")
5526 (description "This package provides a Pytest plugin that facilitates
5527the comparison of images produced by PyVista, generating cached images from
5528tests and comparing subsequent results against that cache.")
5529 (license license:expat)))
5530
5507(define-public python-pyvista 5531(define-public python-pyvista
5508 (package 5532 (package
5509 (name "python-pyvista") 5533 (name "python-pyvista")