From 526e199b565fc233c040e9909d5ec0da3967573c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Apr 2023 18:51:53 +0200 Subject: [PATCH] python3Packages.parsy: add changelog to meta --- pkgs/development/python-modules/parsy/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/parsy/default.nix b/pkgs/development/python-modules/parsy/default.nix index e565efa431d7..07e9bfb2be76 100644 --- a/pkgs/development/python-modules/parsy/default.nix +++ b/pkgs/development/python-modules/parsy/default.nix @@ -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 ]; }; }