python310Packages.zigpy-cc: disable failing test

This commit is contained in:
Fabian Affolter 2022-06-30 23:47:49 +02:00 committed by Martin Weinelt
parent 9e355454e6
commit c2127eaef0

View File

@ -7,11 +7,14 @@
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, zigpy }:
, zigpy
}:
buildPythonPackage rec {
pname = "zigpy-cc";
version = "0.5.2";
format = "setuptools";
# https://github.com/Martiusweb/asynctest/issues/152
# broken by upstream python bug with asynctest and
# is used exclusively by home-assistant with python 3.8
@ -39,10 +42,16 @@ buildPythonPackage rec {
"test_incoming_msg"
"test_incoming_msg2"
"test_deser"
# Fails in sandbox
"tests/test_application.py "
];
pythonImportsCheck = [
"zigpy_cc"
];
meta = with lib; {
description = "A library which communicates with Texas Instruments CC2531 radios for zigpy";
description = "Library which communicates with Texas Instruments CC2531 radios for zigpy";
homepage = "https://github.com/zigpy/zigpy-cc";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu mvnetbiz ];