From 9afa48113af60fce844884577f73b7239a51b98a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 25 Nov 2025 23:50:13 +0000 Subject: [PATCH] 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 --- gnu/packages/databases.scm | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index c72bc4f2308c38c5ac07488000c532c910e211b2..d13525d9e3b8c7715ccbea088215bb3dd375ee89 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