2ce89355c3
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
25 lines
757 B
Nix
25 lines
757 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, aiohttp, crccheck, pyserial, pyserial-asyncio, pycryptodome, zigpy
|
|
, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zigpy-deconz";
|
|
version = "0.9.2";
|
|
|
|
nativeBuildInputs = [ pytest ];
|
|
buildInputs = [ aiohttp crccheck pycryptodome ];
|
|
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "f4256136d714c00d22f6d2abf975438e2bc080cc43b8afef0decb80ed8066ef6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|