python3Packages.compit-inext-api: 0.3.4 -> 0.5.0 (#483298)

This commit is contained in:
Fabian Affolter
2026-01-25 09:03:36 +00:00
committed by GitHub
@@ -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 ];
};
}
})