python3Packages.avea: 1.6.1 -> 1.7.0 (#521450)

This commit is contained in:
Fabian Affolter
2026-05-18 22:04:58 +00:00
committed by GitHub
@@ -7,16 +7,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "avea";
version = "1.6.1";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "k0rventen";
repo = "avea";
tag = "v${version}";
hash = "sha256-IfD74nsuHYBrwXebpRE9tzPIwp+i3jdZjh49gz8NRz4=";
tag = "v${finalAttrs.version}";
hash = "sha256-cBYS8Q70K5MXZ63uI6OGkUsskJ7rkgTBPjlAsxmtmVA=";
};
build-system = [ setuptools ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
meta = {
description = "Python module for interacting with Elgato's Avea bulb";
homepage = "https://github.com/k0rventen/avea";
changelog = "https://github.com/k0rventen/avea/releases/tag/${src.tag}";
changelog = "https://github.com/k0rventen/avea/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})