From 1805a24c32ae3781791c64d0c4a3aa47792900df Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 20 Jul 2025 22:15:14 +0100 Subject: [PATCH] gnu: python-duckdb: Update to 1.3.2. * gnu/packages/python-xyz.scm (python-duckdb): Update to 1.3.2. [arguments] : Disable for now due to guix/guix#1436. : Remove 'set-version. [native-inputs]: Remove python-google-cloud-storage, python-pyarrow, python-pytest, and python-pytest-runner. Change-Id: Ia7924001fcae06a01ab9d1f494be98ee66523309 --- gnu/packages/python-xyz.scm | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4f0e84babf3..b2de3f0f39d 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25398,16 +25398,17 @@ Mustache templating language renderer.") (define-public python-duckdb (package (name "python-duckdb") - (version "1.0.0") + (version "1.3.2") (source (origin (method url-fetch) (uri (pypi-uri "duckdb" version)) (sha256 (base32 - "0lyl6di1c7j31i2mk384j711kzyyf9rjd3nqx5mbgmf7gfvmk852")))) + "1x8zb47y8lzc4w0g013sim8x9vd1h96ra3dd0bvh91y73f5dyn66")))) (build-system pyproject-build-system) (arguments (list + #:tests? #f ;FIXME: See . #:test-flags #~(list "--ignore=tests/slow/test_h2oai_arrow.py" ;; Do not relay on mypy. @@ -25427,11 +25428,6 @@ Mustache templating language renderer.") ;; Tests need this (add-before 'check 'set-HOME (lambda _ (setenv "HOME" "/tmp"))) - (add-before 'build 'set-version - (lambda _ - (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version) - (substitute* "setup.py" - (("\"setuptools_scm<7.0.0\",") "")))) ;; Later versions of pybind replace "_" with "const_name". (add-after 'unpack 'pybind-compatibility (lambda _ @@ -25445,13 +25441,11 @@ Mustache templating language renderer.") (native-inputs (list pybind11 python-fsspec - python-google-cloud-storage + ;; python-google-cloud-storage ;python-grpcio fails (see: guix/guix#1436) python-numpy python-pandas python-psutil - python-pyarrow - python-pytest - python-pytest-runner + ;; python-pytest python-setuptools-scm python-setuptools python-wheel))