From 54a16bc91509d6bd58ff7aff11bfe64f4b30ae56 Mon Sep 17 00:00:00 2001 From: Vivien Kraus Date: Thu, 10 Feb 2022 20:19:49 +0100 Subject: [PATCH v5 30/32] gnu: Add python-pyvistaqt. * gnu/packages/python-science.scm (python-pyvistaqt): New variable. --- gnu/packages/python-science.scm | 41 +++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm index ee77de4272..d04b0ef9e5 100644 --- a/gnu/packages/python-science.scm +++ b/gnu/packages/python-science.scm @@ -1389,3 +1389,44 @@ (define-public python-pyvista Toolkit (VTK) that wraps the VTK library through NumPy and direct array access through a variety of methods and classes.") (license license:expat))) + +(define-public python-pyvistaqt + (package + (name "python-pyvistaqt") + (version "0.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pyvista/pyvistaqt") + (commit version))) + (sha256 + (base32 "19vm0kwxnn5dyiw1byi896spfzxaw39lk5bw7ff536qq1qqg3vnd")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-skipping-tests + (lambda _ + (substitute* "tests/conftest.py" + (("NO_PLOTTING, reason=") "")))) + (add-before 'check 'prepare-x + (lambda _ + (system "Xvfb &") + (setenv "DISPLAY" ":0") + (setenv "HOME" "/tmp"))) + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "python" "-m" "pytest"))))))) + (propagated-inputs (list python-pyvista python-qtpy)) + (native-inputs (list python-pytest python-codecov python-ipython + python-numpy python-pytest-cov python-pytest-memprof + python-pytest-qt python-pyvista python-qtpy + python-scooby vtk xorg-server-for-tests)) + (home-page "https://github.com/pyvista/pyvistaqt") + (synopsis "@code{pyvista} qt plotter") + (description "@code{pyvistaqt} is a helper module for pyvista to enable +you to plot using pyqt by placing a vtk-widget into a background render. This +can be quite useful when you desire to update your plot in real-time.") + (license license:expat))) -- 2.34.0