python310Packages.pyvista: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-09-20 08:47:16 +02:00 committed by GitHub
parent 30fa77f486
commit 55b5a919d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-i+09vjp6m9CSEbWcvj2TCnOb408xw5Gli1en6FTYZH4=";
};
@ -40,8 +40,9 @@ buildPythonPackage rec {
];
meta = with lib; {
homepage = "https://pyvista.org";
description = "Easier Pythonic interface to VTK";
homepage = "https://pyvista.org";
changelog = "https://github.com/pyvista/pyvista/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ wegank ];
};