python3Packages.bellows: 0.21.0 -> 0.22.0
This commit is contained in:
parent
7a7b2c47cb
commit
71d0d4ddce
@ -1,21 +1,40 @@
|
|||||||
{ lib, buildPythonPackage, fetchFromGitHub
|
{ lib
|
||||||
, click, click-log, pure-pcapy3
|
, buildPythonPackage
|
||||||
, pyserial-asyncio, voluptuous, zigpy
|
, fetchFromGitHub
|
||||||
, asynctest, pytestCheckHook, pytest-asyncio }:
|
, click
|
||||||
|
, click-log
|
||||||
|
, pure-pcapy3
|
||||||
|
, pyserial-asyncio
|
||||||
|
, voluptuous
|
||||||
|
, zigpy
|
||||||
|
, asynctest
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-asyncio
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "bellows";
|
pname = "bellows";
|
||||||
version = "0.21.0";
|
version = "0.22.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "zigpy";
|
owner = "zigpy";
|
||||||
repo = "bellows";
|
repo = "bellows";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1gja7cb1cyzbi19k8awa2gyc3bjam0adapalpk5slxny0vxlc73a";
|
sha256 = "0il2cwnrcvgxx9jkj1xr2caqyza3kqjys3fpmcx7avy04xbf5dbv";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "click-log==0.2.1" "click-log>=0.2.1"
|
||||||
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
click click-log pure-pcapy3 pyserial-asyncio voluptuous zigpy
|
click
|
||||||
|
click-log
|
||||||
|
pure-pcapy3
|
||||||
|
pyserial-asyncio
|
||||||
|
voluptuous
|
||||||
|
zigpy
|
||||||
];
|
];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
@ -24,11 +43,6 @@ buildPythonPackage rec {
|
|||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
];
|
];
|
||||||
|
|
||||||
prePatch = ''
|
|
||||||
substituteInPlace setup.py \
|
|
||||||
--replace "click-log==0.2.0" "click-log>=0.2.0"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A Python 3 project to implement EZSP for EmberZNet devices";
|
description = "A Python 3 project to implement EZSP for EmberZNet devices";
|
||||||
homepage = "https://github.com/zigpy/bellows";
|
homepage = "https://github.com/zigpy/bellows";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user