python313Packages.aiolyric: 2.0.1 -> 2.0.2 (#437302)

This commit is contained in:
Fabian Affolter
2025-08-27 14:39:05 +02:00
committed by GitHub
@@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "aiolyric";
version = "2.0.1";
version = "2.0.2";
pyproject = true;
disabled = pythonOlder "3.11";
@@ -22,14 +22,9 @@ buildPythonPackage rec {
owner = "timmo001";
repo = "aiolyric";
tag = version;
hash = "sha256-pN/F4Rdov06sm1yfJQEzmWyujWVeVU+bNGGkgnN4jYw=";
hash = "sha256-k0UE9SXHS8lPu3kC+tGtn99rCU2hq+fdCsp6f83+gv4=";
};
postPatch = ''
substituteInPlace requirements_setup.txt \
--replace-fail "==" ">="
'';
build-system = [
incremental
setuptools
@@ -48,11 +43,16 @@ buildPythonPackage rec {
pythonImportsCheck = [ "aiolyric" ];
disabledTestPaths = [
# _version file is no shipped
"tests/test__version.py"
];
meta = with lib; {
description = "Python module for the Honeywell Lyric Platform";
homepage = "https://github.com/timmo001/aiolyric";
changelog = "https://github.com/timmo001/aiolyric/releases/tag/v${version}";
license = with licenses; [ mit ];
changelog = "https://github.com/timmo001/aiolyric/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}