From 70401f80d546479121e4a8f760aea272884d020a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 26 Aug 2025 23:49:40 +0200 Subject: [PATCH] python313Packages.aiolyric: 2.0.1 -> 2.0.2 Changelog: https://github.com/timmo001/aiolyric/releases/tag/2.0.2 --- .../python-modules/aiolyric/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/aiolyric/default.nix b/pkgs/development/python-modules/aiolyric/default.nix index 40a6d72f4e5a..07d8611fc94b 100644 --- a/pkgs/development/python-modules/aiolyric/default.nix +++ b/pkgs/development/python-modules/aiolyric/default.nix @@ -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 ]; }; }