diff --git a/pkgs/development/python-modules/aioairq/default.nix b/pkgs/development/python-modules/aioairq/default.nix index 623f09030df8..9ea35440fe9f 100644 --- a/pkgs/development/python-modules/aioairq/default.nix +++ b/pkgs/development/python-modules/aioairq/default.nix @@ -6,7 +6,6 @@ pycryptodome, pytest-asyncio, pytestCheckHook, - pythonOlder, setuptools, }: @@ -15,8 +14,6 @@ buildPythonPackage rec { version = "0.4.7"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "CorantGmbH"; repo = "aioairq"; @@ -31,9 +28,6 @@ buildPythonPackage rec { pycryptodome ]; - # Module has no tests - #doCheck = false; - nativeCheckInputs = [ pytest-asyncio pytestCheckHook @@ -49,6 +43,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library to retrieve data from air-Q devices"; homepage = "https://github.com/CorantGmbH/aioairq"; + changelog = "https://github.com/CorantGmbH/aioairq/releases/tag/${src.tag}"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; };