summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-25 23:42:47 -0300
committerVinicius Monego <monego@posteo.net>2025-06-26 00:42:02 -0300
commit5ceeffa75e44eeffbfab32e8340c61cdd6a79503 (patch)
treebcb1535960b173949d886b7153c3f2ebacfa9dc5
parent077a8916085022175b995c8eb21c4e908f23e8eb (diff)
gnu: pgcli: Update to 4.3.0.
* gnu/packages/databases.scm (pgcli): Update to 4.3.0. [build-system]: Use pyproject-build-system. [arguments]<#:test-flags>: Skip failing test. [propagated-inputs]: Remove python-pendulum, python-psycopg2. Add python-psycopg, python-tzlocal. [native-inputs]: Remove python-ipython-sql. Add python-pytest, python-setuptools, python-sshtunnel, python-wheel. Change-Id: I07be1287536010585d25ec9dc3cc2cd4b36e7d7d
-rw-r--r--gnu/packages/databases.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 47b0d6c808..fc52e78dd3 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -912,27 +912,30 @@ multi-thread access.")
(define-public pgcli
(package
(name "pgcli")
- (version "3.2.0")
+ (version "4.3.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pgcli" version))
(sha256
- (base32 "1dy6yzak696107pqv83296h0xhc3ahlfaydm80593gwn37krgpkc"))))
- (build-system python-build-system)
+ (base32 "1vva1fi5sqrdvmx7jmdjmy8zwly22sbsj5lzy60s822m1iay2nkn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ ;; AttributeError: 'NoneType' object has no attribute 'kwargs'.
+ (list #:test-flags #~(list "-k" "not test_application_name_in_env")))
(propagated-inputs
(list python-cli-helpers
python-click
python-configobj
- python-pendulum
python-pgspecial
python-prompt-toolkit
- python-psycopg2
+ python-psycopg
python-pygments
python-setproctitle
- python-sqlparse))
+ python-sqlparse
+ python-tzlocal))
(native-inputs
- (list python-ipython-sql))
+ (list python-pytest python-setuptools python-sshtunnel python-wheel))
(home-page "https://www.pgcli.com")
(synopsis "PostgreSQL CLI with autocompletion and syntax highlighting")
(description