me
/
guix
Archived
1
0
Fork 0

gnu: Add pgcli.

* gnu/packages/databases.scm (pgcli): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Foo Chuan Wei 2021-11-19 06:00:48 +00:00 committed by Nicolas Goaziou
parent a916093be2
commit 2aefa6a493
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 31 additions and 0 deletions

View File

@ -676,6 +676,37 @@ auto-completion and syntax highlighting.")
\"special\", or \"backslash commands\") on PostgreSQL.")
(license license:bsd-3)))
(define-public pgcli
(package
(name "pgcli")
(version "3.2.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pgcli" version))
(sha256
(base32 "1dy6yzak696107pqv83296h0xhc3ahlfaydm80593gwn37krgpkc"))))
(build-system python-build-system)
(propagated-inputs
(list python-cli-helpers
python-click
python-configobj
python-pendulum
python-pgspecial
python-prompt-toolkit
python-psycopg2
python-pygments
python-setproctitle
python-sqlparse))
(native-inputs
(list python-ipython-sql))
(home-page "https://www.pgcli.com")
(synopsis "PostgreSQL CLI with autocompletion and syntax highlighting")
(description
"@code{pgcli} is a command line interface for PostgreSQL with
autocompletion and syntax highlighting.")
(license license:bsd-3)))
(define-public mycli
(package
(name "mycli")