2021-03-03 22:53:13 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, click
|
|
|
|
, click-log
|
|
|
|
, pure-pcapy3
|
|
|
|
, pyserial-asyncio
|
|
|
|
, voluptuous
|
|
|
|
, zigpy
|
|
|
|
, asynctest
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-asyncio
|
|
|
|
}:
|
2020-03-24 21:13:54 +00:00
|
|
|
|
2021-01-20 10:24:45 +00:00
|
|
|
buildPythonPackage rec {
|
2020-03-24 21:13:54 +00:00
|
|
|
pname = "bellows";
|
2021-04-01 13:26:33 +01:00
|
|
|
version = "0.23.1";
|
2020-03-24 21:13:54 +00:00
|
|
|
|
2021-01-20 10:24:45 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zigpy";
|
|
|
|
repo = "bellows";
|
|
|
|
rev = version;
|
2021-04-01 13:26:33 +01:00
|
|
|
sha256 = "sha256-c9rKRmGMlYrzVQmUuM9P3c/Jm4QVM2aBRSZ0OkyrPTY=";
|
2020-03-24 21:13:54 +00:00
|
|
|
};
|
|
|
|
|
2021-03-03 22:53:13 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace setup.py \
|
|
|
|
--replace "click-log==0.2.1" "click-log>=0.2.1"
|
|
|
|
'';
|
|
|
|
|
2020-03-24 21:13:54 +00:00
|
|
|
propagatedBuildInputs = [
|
2021-03-03 22:53:13 +00:00
|
|
|
click
|
|
|
|
click-log
|
|
|
|
pure-pcapy3
|
|
|
|
pyserial-asyncio
|
|
|
|
voluptuous
|
|
|
|
zigpy
|
2020-03-24 21:13:54 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
2021-01-20 10:24:45 +00:00
|
|
|
asynctest
|
|
|
|
pytestCheckHook
|
|
|
|
pytest-asyncio
|
2020-03-24 21:13:54 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-03-24 21:13:54 +00:00
|
|
|
description = "A Python 3 project to implement EZSP for EmberZNet devices";
|
|
|
|
homepage = "https://github.com/zigpy/bellows";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ etu mvnetbiz ];
|
|
|
|
};
|
|
|
|
}
|