mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add python-duckdb.
* gnu/packages/python-xyz.scm (python-duckdb): New variable.
This commit is contained in:
parent
b9eb74d655
commit
d7e0306aa5
1 changed files with 53 additions and 0 deletions
|
@ -20515,6 +20515,59 @@ (define-public python-chevron
|
|||
Mustache templating language renderer.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-duckdb
|
||||
(package
|
||||
(name "python-duckdb")
|
||||
(version "0.8.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "duckdb" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13y1gs565q51li5fi9m7fpf0sqns8frsaii6v95acwjhmdds73f6"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:test-flags
|
||||
'(list "--ignore=tests/slow/test_h2oai_arrow.py"
|
||||
;; Don't install anything, thank you.
|
||||
"-k" "not test_install_non_existent_extension")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; 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 _
|
||||
(with-directory-excursion "src/include/duckdb_python"
|
||||
(substitute* '("python_objects.hpp"
|
||||
"pyfilesystem.hpp"
|
||||
"pybind11/conversions/pyconnection_default.hpp")
|
||||
(("const_name") "_"))))))))
|
||||
(native-inputs
|
||||
(list pybind11
|
||||
python-fsspec
|
||||
python-google-cloud-storage
|
||||
python-mypy
|
||||
python-numpy
|
||||
python-pandas
|
||||
python-psutil
|
||||
python-pyarrow
|
||||
python-pytest
|
||||
python-pytest-runner
|
||||
python-setuptools-scm))
|
||||
(home-page "https://www.duckdb.org")
|
||||
(synopsis "DuckDB embedded database")
|
||||
(description "DuckDB is an in-process SQL OLAP database management
|
||||
system.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-dulwich
|
||||
(package
|
||||
(name "python-dulwich")
|
||||
|
|
Loading…
Reference in a new issue