mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 01:23:03 +00:00
Merge pull request #256193 from wegank/pyvista-bump
python310Packages.pyvista: 0.42.1 -> 0.42.2
This commit is contained in:
commit
e953cd6f15
@ -6,20 +6,23 @@
|
|||||||
, numpy
|
, numpy
|
||||||
, pillow
|
, pillow
|
||||||
, pooch
|
, pooch
|
||||||
|
, pythonOlder
|
||||||
, scooby
|
, scooby
|
||||||
, vtk
|
, vtk
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "pyvista";
|
pname = "pyvista";
|
||||||
version = "0.42.1";
|
version = "0.42.2";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-Bk2bw6WCLzMb3nLMCS9rRugNocA9eYju/aoE68TYu5c=";
|
hash = "sha256-i+09vjp6m9CSEbWcvj2TCnOb408xw5Gli1en6FTYZH4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
@ -40,8 +43,9 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://pyvista.org";
|
|
||||||
description = "Easier Pythonic interface to VTK";
|
description = "Easier Pythonic interface to VTK";
|
||||||
|
homepage = "https://pyvista.org";
|
||||||
|
changelog = "https://github.com/pyvista/pyvista/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ wegank ];
|
maintainers = with maintainers; [ wegank ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user