python313Packages.zigpy: 0.78.0 -> 0.78.1
Diff: https://github.com/zigpy/zigpy/compare/refs/tags/0.78.0...0.78.1 Changelog: https://github.com/zigpy/zigpy/releases/tag/0.78.1
This commit is contained in:
committed by
Martin Weinelt
parent
c583191be7
commit
708cdac273
@@ -12,9 +12,7 @@
|
||||
fetchFromGitHub,
|
||||
freezegun,
|
||||
frozendict,
|
||||
importlib-resources,
|
||||
jsonschema,
|
||||
pycryptodome,
|
||||
pyserial-asyncio,
|
||||
pytest-asyncio,
|
||||
pytest-timeout,
|
||||
@@ -27,16 +25,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "zigpy";
|
||||
version = "0.78.0";
|
||||
version = "0.78.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "zigpy";
|
||||
repo = "zigpy";
|
||||
tag = version;
|
||||
hash = "sha256-7ckpg1ukuASWtTdQn/P0KfXaMo5l2NyB9alCXeTarEU=";
|
||||
hash = "sha256-b+4KqcswAKUNJb4e450VwmAR0mca9ApW4n+kif7BR7o=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@@ -47,22 +43,18 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies =
|
||||
[
|
||||
attrs
|
||||
aiohttp
|
||||
aiosqlite
|
||||
crccheck
|
||||
cryptography
|
||||
frozendict
|
||||
jsonschema
|
||||
pyserial-asyncio
|
||||
typing-extensions
|
||||
pycryptodome
|
||||
voluptuous
|
||||
]
|
||||
++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]
|
||||
++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
|
||||
dependencies = [
|
||||
attrs
|
||||
aiohttp
|
||||
aiosqlite
|
||||
crccheck
|
||||
cryptography
|
||||
frozendict
|
||||
jsonschema
|
||||
pyserial-asyncio
|
||||
typing-extensions
|
||||
voluptuous
|
||||
] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
aioresponses
|
||||
|
||||
Reference in New Issue
Block a user