guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 8cdec484cb0fb83f78c3b94106b2a944a2b507b8 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sat Aug 9 12:06:23 2025 +0100
gnu: python-sql: Update to 1.6.0. * gnu/packages/databases.scm (python-sql): Update to 1.6.0. [native-inputs]: Remove python-wheel; add python-pytest. Change-Id: Ifa0abaa6f95db9efa757a1fc02d3f655b7565ab3 --- gnu/packages/databases.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 078093b59f..0c9562294d 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -5092,15 +5092,15 @@ provides support for parsing, splitting and formatting SQL statements.") (define-public python-sql (package (name "python-sql") - (version "1.5.2") + (version "1.6.0") (source (origin (method url-fetch) (uri (pypi-uri "python_sql" version)) (sha256 - (base32 "0dnd0vai9z1fjkppv2xv2f4vlwwz0dqa137f39mrbjw744vm4pvk")))) + (base32 "0v637qc2g8w155k7crlg70w4bfxznn28c94prlxcax5dx0ja2d2v")))) (build-system pyproject-build-system) - (native-inputs (list python-setuptools python-wheel)) + (native-inputs (list python-pytest python-setuptools)) (home-page "https://python-sql.tryton.org/") (synopsis "Library to write SQL queries in a pythonic way") (description "@code{python-sql} is a library to write SQL queries, that