From dc7bdffb6a189b97f9bef5d010b330388e9f5310 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 3 May 2023 09:25:14 +0200 Subject: [PATCH] python310Packages.zigpy-znp: add changelog to meta --- .../python-modules/zigpy-znp/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-znp/default.nix b/pkgs/development/python-modules/zigpy-znp/default.nix index bdeaf9ac47e7..859bb451203a 100644 --- a/pkgs/development/python-modules/zigpy-znp/default.nix +++ b/pkgs/development/python-modules/zigpy-znp/default.nix @@ -49,15 +49,15 @@ buildPythonPackage rec { pytestCheckHook ]; - pytestFlagsArray = [ + disabledTests = [ # https://github.com/zigpy/zigpy-znp/issues/209 - "--deselect=tests/application/test_joining.py::test_join_device" - "--deselect=tests/application/test_joining.py::test_permit_join" - "--deselect=tests/application/test_requests.py::test_request_recovery_route_rediscovery_af" - "--deselect=tests/application/test_requests.py::test_request_recovery_route_rediscovery_zdo" - "--deselect=tests/application/test_requests.py::test_zigpy_request" - "--deselect=tests/application/test_requests.py::test_zigpy_request_failure" - "--deselect=tests/application/test_zdo_requests.py::test_mgmt_nwk_update_req" + "test_join_device" + "test_permit_join" + "test_request_recovery_route_rediscovery_af" + "test_request_recovery_route_rediscovery_zdo" + "test_zigpy_request" + "test_zigpy_request_failure" + "test_mgmt_nwk_update_req" ]; pythonImportsCheck = [ @@ -67,6 +67,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library for zigpy which communicates with TI ZNP radios"; homepage = "https://github.com/zigpy/zigpy-znp"; + changelog = "https://github.com/zigpy/zigpy-znp/releases/tag/v${version}"; license = licenses.gpl3Plus; maintainers = with maintainers; [ mvnetbiz ]; platforms = platforms.linux;