Merge pull request #256193 from wegank/pyvista-bump

python310Packages.pyvista: 0.42.1 -> 0.42.2

authored by

Weijia Wang and committed by
GitHub
e953cd6f affbaefb

+8 -4
+8 -4
pkgs/development/python-modules/pyvista/default.nix
··· 6 , numpy 7 , pillow 8 , pooch 9 , scooby 10 , vtk 11 }: 12 13 buildPythonPackage rec { 14 pname = "pyvista"; 15 - version = "0.42.1"; 16 format = "setuptools"; 17 18 src = fetchFromGitHub { 19 owner = pname; 20 repo = pname; 21 - rev = "v${version}"; 22 - hash = "sha256-Bk2bw6WCLzMb3nLMCS9rRugNocA9eYju/aoE68TYu5c="; 23 }; 24 25 propagatedBuildInputs = [ ··· 40 ]; 41 42 meta = with lib; { 43 homepage = "https://pyvista.org"; 44 - description = "Easier Pythonic interface to VTK"; 45 license = licenses.mit; 46 maintainers = with maintainers; [ wegank ]; 47 };
··· 6 , numpy 7 , pillow 8 , pooch 9 + , pythonOlder 10 , scooby 11 , vtk 12 }: 13 14 buildPythonPackage rec { 15 pname = "pyvista"; 16 + version = "0.42.2"; 17 format = "setuptools"; 18 + 19 + disabled = pythonOlder "3.8"; 20 21 src = fetchFromGitHub { 22 owner = pname; 23 repo = pname; 24 + rev = "refs/tags/v${version}"; 25 + hash = "sha256-i+09vjp6m9CSEbWcvj2TCnOb408xw5Gli1en6FTYZH4="; 26 }; 27 28 propagatedBuildInputs = [ ··· 43 ]; 44 45 meta = with lib; { 46 + description = "Easier Pythonic interface to VTK"; 47 homepage = "https://pyvista.org"; 48 + changelog = "https://github.com/pyvista/pyvista/releases/tag/v${version}"; 49 license = licenses.mit; 50 maintainers = with maintainers; [ wegank ]; 51 };