python3Packages.zigpy-deconz: fix dependencies
This commit is contained in:
parent
2b04280575
commit
97805ff989
@ -1,14 +1,13 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
, aiohttp, crccheck, pyserial, pyserial-asyncio, pycryptodome, zigpy
|
, pyserial, pyserial-asyncio, zigpy
|
||||||
, pytest }:
|
, pytest, pytest-asyncio, asynctest }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "zigpy-deconz";
|
pname = "zigpy-deconz";
|
||||||
version = "0.9.2";
|
version = "0.9.2";
|
||||||
|
|
||||||
nativeBuildInputs = [ pytest ];
|
|
||||||
buildInputs = [ aiohttp crccheck pycryptodome ];
|
|
||||||
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
|
propagatedBuildInputs = [ pyserial pyserial-asyncio zigpy ];
|
||||||
|
checkInputs = [ pytest pytest-asyncio asynctest ];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -19,7 +18,7 @@ buildPythonPackage rec {
|
|||||||
description = "Library which communicates with Deconz radios for zigpy";
|
description = "Library which communicates with Deconz radios for zigpy";
|
||||||
homepage = "https://github.com/zigpy/zigpy-deconz";
|
homepage = "https://github.com/zigpy/zigpy-deconz";
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ etu ];
|
maintainers = with maintainers; [ etu mvnetbiz ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user