python3Packages.zigpy-xbee: init at 0.12.1
This commit is contained in:
parent
29b377db27
commit
f10f300f01
24
pkgs/development/python-modules/zigpy-xbee/default.nix
Normal file
24
pkgs/development/python-modules/zigpy-xbee/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user