Commit efca6472 authored by Robert Schütz's avatar Robert Schütz
Browse files
parent 32229456
Loading
Loading
Loading
Loading
+3 −6
Original line number Diff line number Diff line
@@ -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 ];
  };