1{ stdenv, buildPythonPackage, fetchPypi
2, pyserial, pyserial-asyncio, zigpy
3, pytest, pytest-asyncio, asynctest }:
4
5buildPythonPackage rec {
6 pname = "zigpy-deconz";
7 version = "0.9.2";
8
9 propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
10 checkInputs = [ pytest pytest-asyncio asynctest ];
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "f4256136d714c00d22f6d2abf975438e2bc080cc43b8afef0decb80ed8066ef6";
15 };
16
17 meta = with stdenv.lib; {
18 description = "Library which communicates with Deconz radios for zigpy";
19 homepage = "https://github.com/zigpy/zigpy-deconz";
20 license = licenses.gpl3Plus;
21 maintainers = with maintainers; [ etu mvnetbiz ];
22 platforms = platforms.linux;
23 };
24}