python3Packages.zigpy-zigate: init at 0.6.1

This commit is contained in:
Elis Hirwing 2020-05-23 22:24:21 +02:00 committed by Matt Votava
parent f10f300f01
commit 2b04280575
2 changed files with 26 additions and 0 deletions

@ -0,0 +1,24 @@
{ stdenv, buildPythonPackage, fetchPypi
, pyserial, pyserial-asyncio, zigpy
, pytest }:
buildPythonPackage rec {
pname = "zigpy-zigate";
version = "0.6.1";
buildInputs = [ pyserial pyserial-asyncio zigpy ];
checkInputs = [ pytest ];
src = fetchPypi {
inherit pname version;
sha256 = "0xxqv65drrr96b9ncwsx9ayd369lpwimj1jjb0d7j6l9lil0wmf5";
};
meta = with stdenv.lib; {
description = "A library which communicates with ZiGate radios for zigpy";
homepage = "http://github.com/doudz/zigpy-zigate";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu mvnetbiz ];
platforms = platforms.linux;
};
}

@ -2695,6 +2695,8 @@ in {
zigpy-xbee = callPackage ../development/python-modules/zigpy-xbee { };
zigpy-zigate = callPackage ../development/python-modules/zigpy-zigate { };
digital-ocean = callPackage ../development/python-modules/digitalocean { };
digi-xbee = callPackage ../development/python-modules/digi-xbee { };