mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:26:21 +01:00
gnu: Add python-pypika.
Not to be confused with python-pika, which is a different package. * gnu/packages/databases.scm (python-pypika): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
ba0b249dd8
commit
c8fdf86d33
1 changed files with 21 additions and 0 deletions
|
@ -3048,6 +3048,27 @@ (define-public python-sql
|
|||
(define-public python2-sql
|
||||
(package-with-python2 python-sql))
|
||||
|
||||
(define-public python-pypika
|
||||
(package
|
||||
(name "python-pypika")
|
||||
(version "0.36.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "PyPika" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0qzn5vygirg52dlizm6ayzdc5llq8p2krrx0kymr236lrz89wqp8"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
`(("python-parameterized" ,python-parameterized)))
|
||||
(home-page "https://github.com/kayak/pypika")
|
||||
(synopsis "SQL query builder API for Python")
|
||||
(description
|
||||
"PyPika is a python SQL query builder that exposes the full richness of
|
||||
the SQL language using a syntax that reflects the resulting query.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public mongo-tools
|
||||
(package
|
||||
(name "mongo-tools")
|
||||
|
|
Loading…
Reference in a new issue