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 ]; }; }