python3Packages.zigpy: init at 0.11.0

This commit is contained in:
Elis Hirwing 2019-11-29 18:25:43 +01:00
parent 473a21f39e
commit 9153236a5e
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, pycryptodome, pycrypto
, pytest, pytest-asyncio, asynctest }:
buildPythonPackage rec {
pname = "zigpy-homeassistant";
version = "0.11.0";
nativeBuildInputs = [ pytest pytest-asyncio asynctest ];
buildInputs = [ aiohttp pycryptodome ];
propagatedBuildInputs = [ crccheck pycrypto ];
src = fetchPypi {
inherit pname version;
sha256 = "021wg9yhz8dsif60r8s5621mf63bsayjjb2bimhq0am03ql0fysl";
};
meta = with stdenv.lib; {
description = "Library implementing a ZigBee stack";
homepage = "https://github.com/zigpy/zigpy";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
platforms = platforms.linux;
};
}

View file

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