diff --git a/pkgs/development/python-modules/compit-inext-api/default.nix b/pkgs/development/python-modules/compit-inext-api/default.nix index 7e916a839432..cf490fa619f2 100644 --- a/pkgs/development/python-modules/compit-inext-api/default.nix +++ b/pkgs/development/python-modules/compit-inext-api/default.nix @@ -7,16 +7,16 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "compit-inext-api"; - version = "0.3.4"; + version = "0.5.0"; pyproject = true; src = fetchFromGitHub { owner = "Przemko92"; repo = "compit-inext-api"; - tag = version; - hash = "sha256-J3V7ahETbCTJW/6jYvF9BbuIffVvbMH329nO1bmVKEw="; + tag = finalAttrs.version; + hash = "sha256-DlNkDfV3fp/7DetiIDx3yi8SfJHV4sFIMHEam5rcYrg="; }; build-system = [ setuptools ]; @@ -34,7 +34,8 @@ buildPythonPackage rec { meta = { description = "Python client for the Compit iNext API"; homepage = "https://github.com/Przemko92/compit-inext-api"; + changelog = "https://github.com/Przemko92/compit-inext-api/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = [ lib.maintainers.dotlambda ]; }; -} +})