From 523ee6cd697c854bd7854f7cf3fef444f2c7cff7 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Sat, 18 Jul 2026 23:59:21 +0200 Subject: [PATCH] python3Packages.pyskyqremote: migrate to pyproject --- pkgs/development/python-modules/pyskyqremote/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyskyqremote/default.nix b/pkgs/development/python-modules/pyskyqremote/default.nix index d62a7a76fd78..16d4e3cf1423 100644 --- a/pkgs/development/python-modules/pyskyqremote/default.nix +++ b/pkgs/development/python-modules/pyskyqremote/default.nix @@ -3,6 +3,7 @@ buildPythonPackage, fetchFromGitHub, requests, + setuptools, websocket-client, xmltodict, }: @@ -10,7 +11,7 @@ buildPythonPackage rec { pname = "pyskyqremote"; version = "0.3.26"; - format = "setuptools"; + pyproject = true; src = fetchFromGitHub { owner = "RogerSelwyn"; @@ -19,7 +20,9 @@ buildPythonPackage rec { hash = "sha256-aMgUwgKHgR+NQvRxiUV7GaXehjDIlJJJHwSmHDmzK08="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ requests websocket-client xmltodict