python3Packages.zigpy-xbee: init at 0.12.1

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

View File

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

View File

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