Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi
2, pyserial, pyserial-asyncio, zigpy
3, pytest }:
4
5buildPythonPackage rec {
6 pname = "zigpy-zigate";
7 version = "0.6.1";
8
9 buildInputs = [ pyserial pyserial-asyncio zigpy ];
10 checkInputs = [ pytest ];
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0xxqv65drrr96b9ncwsx9ayd369lpwimj1jjb0d7j6l9lil0wmf5";
15 };
16
17 meta = with stdenv.lib; {
18 description = "A library which communicates with ZiGate radios for zigpy";
19 homepage = "http://github.com/doudz/zigpy-zigate";
20 license = licenses.gpl3Plus;
21 maintainers = with maintainers; [ etu mvnetbiz ];
22 platforms = platforms.linux;
23 };
24}