Unverified Commit 9cd62aaf authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

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

parents fb8af740 095e6ced
Loading
Loading
Loading
Loading
+5 −6
Original line number Diff line number Diff line
@@ -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 ];
  };