diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-07-25 00:26:59 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-25 11:32:11 +0100 |
commit | 9b4925f01b23c88afb1e9658163ee74ba921aaa8 (patch) | |
tree | 49980db65a4730ffb9571f8eb7168852e180bda5 /gnu/packages/python-xyz.scm | |
parent | b18266a41f7e9d2643ffe972bbd8e34426225a27 (diff) |
gnu: python-psycopg2-binary: Improve style.
* gnu/packages/python-xyz.scm (python-psycopg2-binary): Run guix
style and reorder fields.
Change-Id: I2c730ae7e3b57784b7d45a119f066a76ad74fc61
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 81d5196937..1c9df81ec8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -37743,18 +37743,18 @@ Python, with static types.") (package (name "python-psycopg2-binary") (version "2.9.3") - (source (origin - (method url-fetch) - (uri (pypi-uri "psycopg2-binary" version)) - (sha256 - (base32 - "0kpaxg3lg5wg5ww5kxmzi2z2d7arsx13ci915d8a2pf17lqza7bn")))) + (source + (origin + (method url-fetch) + (uri (pypi-uri "psycopg2-binary" version)) + (sha256 + (base32 "0kpaxg3lg5wg5ww5kxmzi2z2d7arsx13ci915d8a2pf17lqza7bn")))) (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. '(#:tests? #f)) + (native-inputs (list python-setuptools python-wheel)) + (inputs (list postgresql)) (home-page "https://psycopg.org/") (synopsis "PostgreSQL database adapter for Python") (description |