From e8a87769f199a5a91e6bd32f5d02cfa851b353ac Mon Sep 17 00:00:00 2001 From: Harinn Date: Sat, 13 Jun 2026 05:20:32 +0700 Subject: [PATCH] python3Packages.zigpy-cc: migrate to pyproject --- pkgs/development/python-modules/zigpy-cc/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-cc/default.nix b/pkgs/development/python-modules/zigpy-cc/default.nix index 51f8b9c3958a..e1e566aeda1b 100644 --- a/pkgs/development/python-modules/zigpy-cc/default.nix +++ b/pkgs/development/python-modules/zigpy-cc/default.nix @@ -3,6 +3,7 @@ asynctest, buildPythonPackage, fetchFromGitHub, + setuptools, pyserial-asyncio, pytest-asyncio, pytestCheckHook, @@ -12,7 +13,7 @@ buildPythonPackage rec { pname = "zigpy-cc"; version = "0.5.2"; - format = "setuptools"; + pyproject = true; # https://github.com/Martiusweb/asynctest/issues/152 # broken by upstream python bug with asynctest and @@ -25,7 +26,9 @@ buildPythonPackage rec { sha256 = "U3S8tQ3zPlexZDt5GvCd+rOv7CBVeXJJM1NGe7nRl2o="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ pyserial-asyncio zigpy ];