summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-22 22:40:49 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-12-27 19:59:51 +0000
commitd8af184753b9ceccda0cd75920668ed0149a6beb (patch)
treec186425ff9728200ec78d7687f74e9d3405d0cc5 /gnu
parent452e3a5c7e2094fa2e0c083e597db2600e29e25e (diff)
gnu: python-psycopg-pool: Switch to pyproject.
* gnu/packages/databases.scm (python-psycopg-pool): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools. Change-Id: Ie891a1d87f0bf9206a26dba94a6bb562552c6a31 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/databases.scm16
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 39dfe2c6df5..1db7b4ebe15 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4758,14 +4758,16 @@ libraries with SQLALchemy.")
(sha256
(base32
"1pkx7nj1mhacwpna7ldzqfqxd1xg8826600r0bs9ad1h93f429yh"))))
- (build-system python-build-system)
+ (build-system pyproject-build-system)
(arguments
- (list #:tests? #f ;run for psycopg below
- #:phases
- #~(modify-phases %standard-phases
- ;; This module requires 'psycopg', however psycopg needs this
- ;; for its tests. Disable sanity check to break the cycle.
- (delete 'sanity-check))))
+ (list
+ #:tests? #f ;run for psycopg below
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; This module requires 'psycopg', however psycopg needs this
+ ;; for its tests. Disable sanity check to break the cycle.
+ (delete 'sanity-check))))
+ (native-inputs (list python-setuptools))
(home-page "https://www.psycopg.org/")
(synopsis "Connection pooler for psycopg")
(description