python312Packages.pyvista: 0.44.2 -> 0.45.0 (#401727)

This commit is contained in:
Weijia Wang
2025-04-25 14:57:26 +02:00
committed by GitHub
@@ -6,7 +6,7 @@
numpy,
pillow,
pooch,
pythonOlder,
pythonAtLeast,
scooby,
setuptools,
typing-extensions,
@@ -15,16 +15,14 @@
buildPythonPackage rec {
pname = "pyvista";
version = "0.44.2";
version = "0.45.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pyvista";
repo = "pyvista";
tag = "v${version}";
hash = "sha256-ZQfI0lmh/cwE224yk6a2G3gLUCsBjCQqPI1y4zYj0FI=";
hash = "sha256-ruhG9HsD1PzTs/S6IDtuqIxg7UBmn67Ne2Y/H8y/9Cs=";
};
build-system = [ setuptools ];
@@ -45,9 +43,10 @@ buildPythonPackage rec {
pythonImportsCheck = [ "pyvista" ];
meta = with lib; {
broken = pythonAtLeast "3.13"; # segfault
description = "Easier Pythonic interface to VTK";
homepage = "https://pyvista.org";
changelog = "https://github.com/pyvista/pyvista/releases/tag/v${version}";
changelog = "https://github.com/pyvista/pyvista/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};