guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b18266a41f7e9d2643ffe972bbd8e34426225a27
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jul 22 01:59:09 2025 +0200
gnu: python-psycopg2-binary: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-psycopg2-binary):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-setuptools, python-wheel.
Change-Id: Ide1577a2414e380d7be66dee7d88c5bc59abae6e
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e6219b48b6..81d5196937 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37749,7 +37749,8 @@ Python, with static types.")
(sha256
(base32
"0kpaxg3lg5wg5ww5kxmzi2z2d7arsx13ci915d8a2pf17lqza7bn"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
+ (native-inputs (list python-setuptools python-wheel))
(inputs (list postgresql))
(arguments
;; Tests are disable because they need a live instance of PostgreSQL.