python3Packages.aiolyric: 2.0.2 -> 2.1.0 (#518725)

This commit is contained in:
Fabian Affolter
2026-05-10 19:32:00 +00:00
committed by GitHub
@@ -10,16 +10,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "aiolyric";
version = "2.0.2";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "timmo001";
repo = "aiolyric";
tag = version;
hash = "sha256-k0UE9SXHS8lPu3kC+tGtn99rCU2hq+fdCsp6f83+gv4=";
tag = finalAttrs.version;
hash = "sha256-kLsq1pBRWz49DZgX47k132OipDcfn+kby6/GYDL3pPc=";
};
build-system = [
@@ -48,8 +48,8 @@ buildPythonPackage rec {
meta = {
description = "Python module for the Honeywell Lyric Platform";
homepage = "https://github.com/timmo001/aiolyric";
changelog = "https://github.com/timmo001/aiolyric/releases/tag/${src.tag}";
changelog = "https://github.com/timmo001/aiolyric/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})