python3Packages.zigpy-deconz: init at 0.7.0

This commit is contained in:
Elis Hirwing 2019-11-29 18:31:18 +01:00
parent 9153236a5e
commit 3cdaa84b2b
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi
, aiohttp, crccheck, pyserial, pyserial-asyncio, pycryptodome, zigpy
, pytest }:
buildPythonPackage rec {
pname = "zigpy-deconz";
version = "0.7.0";
nativeBuildInputs = [ pytest ];
buildInputs = [ aiohttp crccheck pycryptodome ];
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
src = fetchPypi {
inherit pname version;
sha256 = "049k6lvgf6yjkinbbzm7gqrzqljk2ky9kfw8n53x8kjyfmfp71i2";
};
meta = with stdenv.lib; {
description = "Library which communicates with Deconz radios for zigpy";
homepage = "https://github.com/zigpy/zigpy-deconz";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}

View file

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