Robert Schütz
2025-04-25 05:08:55 -07:00
parent 3222945627
commit efca6472fd
@@ -6,7 +6,6 @@
numpy,
pillow,
pooch,
pythonOlder,
scooby,
setuptools,
typing-extensions,
@@ -15,16 +14,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 ];
@@ -47,7 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
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 ];
};