summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-25 23:50:13 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-26 21:22:04 +0000
commit9afa48113af60fce844884577f73b7239a51b98a (patch)
tree8fbc75eadf77fb1c3101a2c69ec87fbce67ab2b8 /gnu
parent3995e51f75a947640a9d8e5e850045ad0e4b344c (diff)
gnu: python-pypika: Update to 0.49.0.
* gnu/packages/databases.scm (python-pypika): Update to 0.49.0. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest and python-setuptools. Change-Id: I3f35b622325d8a2d4c953eb0f71475303b9ee44e
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/databases.scm24
1 files changed, 13 insertions, 11 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index c72bc4f2308..d13525d9e3b 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -5134,19 +5134,21 @@ transforms idiomatic python function calls to well-formed SQL queries.")
(define-public python-pypika
(package
(name "python-pypika")
- (version "0.47.6")
+ (version "0.49.0")
(source
- (origin (method git-fetch)
- (uri (git-reference
- (url "https://github.com/kayak/pypika")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "001pg36sw9a36zdd1kccbymcxndphjcjbbrsy6ri7ng8h4dgz549"))))
- (build-system python-build-system)
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kayak/pypika")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0nxm2cxq9sx43g57qxw7kzy8lsl5svq659r3mhxpa9vcbxrjrb1d"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-parameterized))
+ (list python-parameterized
+ python-pytest
+ python-setuptools))
(home-page "https://github.com/kayak/pypika")
(synopsis "SQL query builder API for Python")
(description