From 708cdac2737b6bdb5ab50d4e84af830ad042b610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 19 Apr 2025 22:33:50 -0700 Subject: [PATCH] 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 --- .../python-modules/zigpy/default.nix | 36 ++++++++----------- 1 file changed, 14 insertions(+), 22 deletions(-) diff --git a/pkgs/development/python-modules/zigpy/default.nix b/pkgs/development/python-modules/zigpy/default.nix index a9b9fde8ec90..dad6edf4dc1f 100644 --- a/pkgs/development/python-modules/zigpy/default.nix +++ b/pkgs/development/python-modules/zigpy/default.nix @@ -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