From ed479712ef7bc5c4aed2defcd0cebe1299777197 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 27 Dec 2025 18:02:24 +0000 Subject: [PATCH] gnu: python-agate-sql: Update to 0.7.3. * gnu/packages/wireservice.scm (python-agate-sql): Update to 0.7.3. [source]: Switch to git-fetch. [arguments] : Skip one test. [propagated-inputs]: Remove python-crate. [native-inputs]: Remove python-wheel. Change-Id: I6e663ed216e3ac6174ef2830b6837b93c0b51145 --- gnu/packages/wireservice.scm | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/gnu/packages/wireservice.scm b/gnu/packages/wireservice.scm index f4b1d14d33..6b191ea5fc 100644 --- a/gnu/packages/wireservice.scm +++ b/gnu/packages/wireservice.scm @@ -119,26 +119,31 @@ previously known as journalism.") (define-public python-agate-sql (package (name "python-agate-sql") - (version "0.7.2") + (version "0.7.3") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/wireservice/agate-sql") - (commit version))) + (url "https://github.com/wireservice/agate-sql") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "03pvya65jm4s5sxwz0msj5dwjr6mk7dja3wdyh7hmf31dpczkjm8")))) + (base32 "04rcrcv57wdbkg90k1s0rwhlw223nm9fhw9x6xkl8nwxr0n6zyk0")))) (build-system pyproject-build-system) ;; XXX: Documentation requires which ;; is not packaged yet and depends on some missing Node.js packages + (arguments + (list + #:test-flags + ;; TODO: sqlalchemy.exc.NoSuchModuleError: Can't load plugin: + ;; sqlalchemy.dialects:crate + #~(list "-k" "not test_to_sql_create_statement_with_dialects"))) (native-inputs (list python-pytest - python-setuptools - python-wheel)) + ;; python-sqlalchemy-cratedb ;not packaged, long journey + python-setuptools)) (propagated-inputs (list python-agate - python-crate python-sqlalchemy)) (home-page "https://agate-sql.rtfd.org") (synopsis "SQL read/write support to agate")