13 buildPythonPackage rec {
16 format = "setuptools";
18 # https://github.com/Martiusweb/asynctest/issues/152
19 # broken by upstream python bug with asynctest and
20 # is used exclusively by home-assistant with python 3.8
21 disabled = pythonOlder "3.8";
23 src = fetchFromGitHub {
27 sha256 = "U3S8tQ3zPlexZDt5GvCd+rOv7CBVeXJJM1NGe7nRl2o=";
30 propagatedBuildInputs = [
35 doCheck = pythonOlder "3.11"; # asynctest is unsupported on python3.11
48 "tests/test_application.py "
51 pythonImportsCheck = [ "zigpy_cc" ];
54 description = "Library which communicates with Texas Instruments CC2531 radios for zigpy";
55 homepage = "https://github.com/zigpy/zigpy-cc";
56 license = licenses.gpl3Plus;
57 maintainers = with maintainers; [ mvnetbiz ];
58 platforms = platforms.linux;