mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-tables: Update to 3.10.2.
* gnu/packages/python-xyz.scm (python-tables): Update to 3.10.2. [build-system]: Switch to pyproject-build-system. [phases]{set-LD_LIBRARY_PATH}: Replace by {pre-build} with setting up environment variables for each library path which is available in setup.py. Regenerate C code with Cython before build. {pre-check}: New phase. {check}: Rework test invocation to run just bare minimal test suite, add a notes popping up during tests invocation describing it. [native-inputs]: Add python-pytest, python-setuptools-next, and python-sphinx. [inputs]: Remove hdf5-1.10, and zlib; add bzip2, and hdf5. Fixes: guix/guix#2342. Change-Id: Ia1d00979123e459640d74a0dfd7fd52b25f8b9b7
This commit is contained in:
parent
f4ca04a820
commit
ad1941a08f
1 changed files with 37 additions and 12 deletions
|
@ -17809,18 +17809,20 @@ tasks, sockets, files, locks, and queues.")
|
||||||
(define-public python-tables
|
(define-public python-tables
|
||||||
(package
|
(package
|
||||||
(name "python-tables")
|
(name "python-tables")
|
||||||
(version "3.10.1")
|
(version "3.10.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "tables" version))
|
(uri (pypi-uri "tables" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1kr6y4qivqy462gva4bqym3x4alhxijfqjplxax3gh5r6k3pm82a"))
|
"0469jrkmp0qv8cmlqkizm3b8imyc97mk9pfn66ldpyl6f4m82i15"))
|
||||||
(snippet '(begin
|
(snippet '(begin
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
|
;; TODO: Unbundle.
|
||||||
|
;; (delete-file-recursively "hdf5-blosc")
|
||||||
(delete-file-recursively "c-blosc")))))
|
(delete-file-recursively "c-blosc")))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -17839,25 +17841,48 @@ tasks, sockets, files, locks, and queues.")
|
||||||
"\""
|
"\""
|
||||||
(search-input-file inputs "/lib/libblosc2.so")
|
(search-input-file inputs "/lib/libblosc2.so")
|
||||||
"\",\n" m)))))
|
"\",\n" m)))))
|
||||||
(add-before 'build 'set-LD_LIBRARY_PATH
|
(add-before 'build 'pre-build
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The setup.py build system makes use of ctypes.CDLL, which
|
(invoke "make" "distclean") ;Regenerate C code with Cython
|
||||||
;; uses dlopen, which looks up library names from standard
|
(setenv "BLOSC2_DIR" #$(this-package-input "cblosc2"))
|
||||||
;; locations or LD_LIBRARY_PATH.
|
(setenv "BLOSC_DIR" #$(this-package-input "c-blosc"))
|
||||||
(setenv "LD_LIBRARY_PATH" (getenv "LIBRARY_PATH"))))
|
(setenv "BZIP2_DIR" #$(this-package-input "bzip2"))
|
||||||
|
(setenv "HDF5_DIR" #$(this-package-input "hdf5"))
|
||||||
|
(setenv "LZO_DIR" #$(this-package-input "lzo"))))
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
(setenv "HOME" "/tmp")))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(when tests?
|
(when tests?
|
||||||
(invoke "python" "setup.py" "check")))))))
|
(with-directory-excursion "/tmp"
|
||||||
|
;; Performing only a light (yet comprehensive) subset of the
|
||||||
|
;; test suite. If you want a more complete test, try
|
||||||
|
;; passing the --heavy flag to this script (or set the
|
||||||
|
;; 'heavy' parameter in case you are using tables.test()
|
||||||
|
;; call). The whole suite will take more than 4 hours to
|
||||||
|
;; complete on a relatively modern CPU and around 512 MB of
|
||||||
|
;; main memory.
|
||||||
|
(invoke "python" "-m" "tables.tests.test_all"))))))))
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config
|
||||||
|
python-cython
|
||||||
|
python-pytest
|
||||||
|
python-setuptools-next
|
||||||
|
python-sphinx))
|
||||||
|
(inputs
|
||||||
|
(list bzip2
|
||||||
|
c-blosc
|
||||||
|
c-blosc2
|
||||||
|
hdf5
|
||||||
|
lzo))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-blosc2
|
(list python-blosc2
|
||||||
python-numpy
|
|
||||||
python-numexpr
|
python-numexpr
|
||||||
|
python-numpy
|
||||||
python-packaging
|
python-packaging
|
||||||
python-py-cpuinfo
|
python-py-cpuinfo
|
||||||
python-typing-extensions))
|
python-typing-extensions))
|
||||||
(native-inputs (list pkg-config python-cython))
|
|
||||||
(inputs (list c-blosc c-blosc2 hdf5-1.10 bzip2 lzo zlib))
|
|
||||||
(home-page "https://www.pytables.org/")
|
(home-page "https://www.pytables.org/")
|
||||||
(synopsis "Hierarchical datasets for Python")
|
(synopsis "Hierarchical datasets for Python")
|
||||||
(description "PyTables is a package for managing hierarchical datasets and
|
(description "PyTables is a package for managing hierarchical datasets and
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue