mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add litecli.
* gnu/packages/databases.scm (litecli): New variable. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
5c0e4cb107
commit
b7a515c510
1 changed files with 28 additions and 0 deletions
|
@ -617,6 +617,34 @@ replacement for the code@{python-memcached} library.")
|
||||||
(define-public python2-pylibmc
|
(define-public python2-pylibmc
|
||||||
(package-with-python2 python-pylibmc))
|
(package-with-python2 python-pylibmc))
|
||||||
|
|
||||||
|
(define-public litecli
|
||||||
|
(package
|
||||||
|
(name "litecli")
|
||||||
|
(version "1.6.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "litecli" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1yb706mgzizzijm1k0fbny98jf58qh5q6f2870rbplxlfla4w9sd"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-cli-helpers" ,python-cli-helpers)
|
||||||
|
("python-click" ,python-click)
|
||||||
|
("python-configobj" ,python-configobj)
|
||||||
|
("python-prompt-toolkit" ,python-prompt-toolkit)
|
||||||
|
("python-pygments" ,python-pygments)
|
||||||
|
("python-sqlparse" ,python-sqlparse)))
|
||||||
|
(native-inputs
|
||||||
|
`(("python-mock" ,python-mock)
|
||||||
|
("python-pytest" ,python-pytest)))
|
||||||
|
(home-page "https://litecli.com")
|
||||||
|
(synopsis "CLI for SQLite databases")
|
||||||
|
(description
|
||||||
|
"@code{litecli} is a command-line client for SQLite databases that has
|
||||||
|
auto-completion and syntax highlighting.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public mycli
|
(define-public mycli
|
||||||
(package
|
(package
|
||||||
(name "mycli")
|
(name "mycli")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue