python3Packages.parsy: add changelog to meta
This commit is contained in:
parent
22f7ec8637
commit
526e199b56
1 changed files with 3 additions and 2 deletions
|
@ -15,7 +15,7 @@ buildPythonPackage rec {
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
repo = "parsy";
|
repo = "parsy";
|
||||||
owner = "python-parsy";
|
owner = "python-parsy";
|
||||||
rev = "v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8=";
|
hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -30,7 +30,8 @@ buildPythonPackage rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/python-parsy/parsy";
|
homepage = "https://github.com/python-parsy/parsy";
|
||||||
description = "Easy-to-use parser combinators, for parsing in pure Python";
|
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 ];
|
maintainers = with maintainers; [ milibopp ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue