python3Packages.parsy: add changelog to meta

authored by

Fabian Affolter and committed by
Phillip Cloud
526e199b 22f7ec86

+3 -2
+3 -2
pkgs/development/python-modules/parsy/default.nix
··· 15 15 src = fetchFromGitHub { 16 16 repo = "parsy"; 17 17 owner = "python-parsy"; 18 - rev = "v${version}"; 18 + rev = "refs/tags/v${version}"; 19 19 hash = "sha256-/Bu3xZUpXI4WiYJKKWTJTdSFq8pwC1PFDw0Kr8s3Fe8="; 20 20 }; 21 21 ··· 30 30 meta = with lib; { 31 31 homepage = "https://github.com/python-parsy/parsy"; 32 32 description = "Easy-to-use parser combinators, for parsing in pure Python"; 33 - license = [ licenses.mit ]; 33 + changelog = "https://github.com/python-parsy/parsy/blob/v${version}/docs/history.rst"; 34 + license = licenses.mit; 34 35 maintainers = with maintainers; [ milibopp ]; 35 36 }; 36 37 }