From f9405aa9ca638b2f404e3858cddc3ac2aba87e8e Mon Sep 17 00:00:00 2001 From: trev Date: Fri, 15 Aug 2025 02:04:47 -0400 Subject: [PATCH] fix: add new reqs for buildPythonApplication --- ci/nur.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/nur.nix b/ci/nur.nix index 53377e142..bf4d9b565 100644 --- a/ci/nur.nix +++ b/ci/nur.nix @@ -5,11 +5,14 @@ git, nix, glibcLocales, + setuptools, }: buildPythonApplication { name = "nur"; src = ./.; + pyproject = true; + build-system = [ setuptools ]; doCheck = false;