guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: Add pgcli.


From: guix-commits
Subject: 04/04: gnu: Add pgcli.
Date: Fri, 14 Jan 2022 04:20:08 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit 2aefa6a493750aef601598576337ac7efc879fe8
Author: Foo Chuan Wei <chuanwei.foo@hotmail.com>
AuthorDate: Fri Nov 19 06:00:48 2021 +0000

    gnu: Add pgcli.
    
    * gnu/packages/databases.scm (pgcli): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/databases.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index e0b6f03f8a..4d7b090d03 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]