python3Packages.parsy: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-04-15 18:51:53 +02:00 committed by Phillip Cloud
parent 22f7ec8637
commit 526e199b56
No known key found for this signature in database
GPG key ID: D908212070FD785E

View file

@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
repo = "parsy";
owner = "python-parsy";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8=";
};
@ -30,7 +30,8 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/python-parsy/parsy";
description = "Easy-to-use parser combinators, for parsing in pure Python";
license = [ licenses.mit ];
changelog = "https://github.com/python-parsy/parsy/blob/v${version}/docs/history.rst";
license = licenses.mit;
maintainers = with maintainers; [ milibopp ];
};
}