[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/18: gnu: Add python-pyvista.
From: |
guix-commits |
Subject: |
11/18: gnu: Add python-pyvista. |
Date: |
Mon, 23 May 2022 10:26:09 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 4ab5c8348d29fb71c98a920a478f4b319faacf29
Author: Paul A. Patience <paul@apatience.com>
AuthorDate: Mon May 2 21:17:40 2022 +0000
gnu: Add python-pyvista.
* gnu/packages/python-science.scm (python-pyvista): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-science.scm | 52 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 90809e8e56..6bc726fc83 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -1187,6 +1187,58 @@ pandas code.")
aggregated sum and more.")
(license license:bsd-3)))
+(define-public python-pyvista
+ (package
+ (name "python-pyvista")
+ (version "0.34.0")
+ (source
+ ;; The PyPI tarball does not contain the tests.
+ ;; (However, we don't yet actually run the tests.)
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/pyvista/pyvista")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0f2x2wvi5pkpv5h3jrnx8zxnaj51navfqp2fdna1l9rpjgjjf94g"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ (list python-appdirs
+ python-imageio
+ python-matplotlib
+ python-meshio
+ python-numpy
+ python-pillow
+ python-scooby
+ vtk))
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ ;; Disable tests for now because they require several modules
+ ;; currently unpackaged in Guix.
+ (delete 'check)
+ ;; Disable the sanity check, which fails with the following error:
+ ;;
+ ;; ...checking requirements: ERROR: pyvista==0.34.0
DistributionNotFound(Requirement.parse('vtk'), {'pyvista'})
+ (delete 'sanity-check))))
+ (home-page "https://docs.pyvista.org/")
+ (synopsis "3D plotting and mesh analysis through VTK")
+ (description
+ "PyVista is...
+
+@itemize
+@item @emph{Pythonic VTK}: a high-level API to the Visualization
+Toolkit (VTK);
+@item mesh data structures and filtering methods for spatial datasets;
+@item 3D plotting made simple and built for large/complex data geometries.
+@end itemize
+
+This package provides a Pythonic, well-documented interface exposing VTK's
+powerful visualization backend to facilitate rapid prototyping, analysis, and
+visual integration of spatially referenced datasets.")
+ (license license:expat)))
+
(define-public python-traittypes
(package
(name "python-traittypes")
- 07/18: gnu: python-meshio: Update to 5.3.4., (continued)
- 07/18: gnu: python-meshio: Update to 5.3.4., guix-commits, 2022/05/23
- 08/18: gnu: Add python-pyperf., guix-commits, 2022/05/23
- 10/18: gnu: Add python-scooby., guix-commits, 2022/05/23
- 02/18: import: utils: Update list of SPDX licenses., guix-commits, 2022/05/23
- 03/18: gnu: python-plotly: Update to 5.6.0., guix-commits, 2022/05/23
- 04/18: gnu: python-meshio: Remove input labels., guix-commits, 2022/05/23
- 05/18: gnu: python-meshio: Remove trailing booleans., guix-commits, 2022/05/23
- 06/18: gnu: python-meshio: Honor #:tests? flag., guix-commits, 2022/05/23
- 09/18: gnu: Add python-pyvips., guix-commits, 2022/05/23
- 13/18: gnu: Add patatt., guix-commits, 2022/05/23
- 11/18: gnu: Add python-pyvista.,
guix-commits <=
- 12/18: licenses: Add Expat No Attribution license., guix-commits, 2022/05/23
- 14/18: gnu: b4: Drop now unneeded snippet., guix-commits, 2022/05/23
- 15/18: gnu: b4: Enable patch attestation., guix-commits, 2022/05/23
- 16/18: gnu: python-django: Add 3.1.14., guix-commits, 2022/05/23
- 17/18: gnu: Add archivebox., guix-commits, 2022/05/23
- 18/18: gnu: emacs-org-contrib: Do not propogate cider to profile., guix-commits, 2022/05/23