1{ stdenv, buildPythonPackage, fetchPypi
2, aiohttp, crccheck, pycryptodome, pycrypto, voluptuous
3, pytest, pytest-asyncio, asynctest }:
4
5buildPythonPackage rec {
6 pname = "zigpy";
7 version = "0.22.2";
8
9 propagatedBuildInputs = [ aiohttp crccheck pycrypto pycryptodome voluptuous ];
10 checkInputs = [ pytest pytest-asyncio asynctest ];
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "a43129932c6e4af0d2d57542218faf7695e2424ce18a5a8915d016e1303f5e44";
15 };
16
17 meta = with stdenv.lib; {
18 description = "Library implementing a ZigBee stack";
19 homepage = "https://github.com/zigpy/zigpy";
20 license = licenses.gpl3Plus;
21 maintainers = with maintainers; [ etu mvnetbiz ];
22 platforms = platforms.linux;
23 };
24}