about summary refs log tree commit diff
diff options
context:
space:
mode:
authorClaude Sonnet 4.62026-05-27 00:00:00 +0000
committerFrederick Muriuki Muriithi2026-05-27 15:27:34 -0500
commitabe760a824825a521eccb1b9ecca4c0b7258fa1e (patch)
treede28266633ce1dbf19c67517052c6ec0f3e64df5
parent64f779a275cde734ba9bbe7f808c34d3a9217f32 (diff)
downloadgn-integration-tests-abe760a824825a521eccb1b9ecca4c0b7258fa1e.tar.gz
pyproject: add build-system stanza for Guix packaging HEAD main
Without a [build-system] table Guix's pyproject-build-system has no
backend to invoke.  Declare setuptools so the package builds cleanly.
-rw-r--r--pyproject.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 6a8f9a4..e94e642 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -16,3 +16,7 @@ markers = [
     "gn_auth: Tests exercising the gn-auth service",
     "auth_flow: Tests requiring valid user credentials (set GN_TEST_EMAIL and GN_TEST_PASSWORD)",
 ]
+
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.backends.legacy:build"