mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: python-xarray: Update to 2023.12.0.
* gnu/packages/python-science.scm (python-xarray): Update to 2023.12.0. [arguments]: Ignore one test file. [propagated-inputs]: Add python-packaging. Change-Id: I6b70f59670f7bc8b56787fe3436579db8ac113bb
This commit is contained in:
parent
076e891754
commit
e31e5928ae
1 changed files with 6 additions and 3 deletions
|
@ -831,18 +831,21 @@ (define-public python-einops
|
||||||
(define-public python-xarray
|
(define-public python-xarray
|
||||||
(package
|
(package
|
||||||
(name "python-xarray")
|
(name "python-xarray")
|
||||||
(version "2023.6.0")
|
(version "2023.12.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "xarray" version))
|
(uri (pypi-uri "xarray" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1339fz5gxkizq02h6vn19546x9p4c3nd9ipzpcg39h7gwhg26yi6"))))
|
"0cyldwchcrmbm1y7l1ry70kk8zdh7frxci3c6iwf4iyyj34dnra5"))))
|
||||||
(build-system pyproject-build-system)
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
;; This needs a more recent version of python-hypothesis
|
||||||
|
(list #:test-flags '(list "--ignore=xarray/tests/test_strategies.py")))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-setuptools-scm python-pytest))
|
(list python-setuptools-scm python-pytest))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-numpy python-pandas))
|
(list python-numpy python-packaging python-pandas))
|
||||||
(home-page "https://github.com/pydata/xarray")
|
(home-page "https://github.com/pydata/xarray")
|
||||||
(synopsis "N-D labeled arrays and datasets")
|
(synopsis "N-D labeled arrays and datasets")
|
||||||
(description "Xarray (formerly xray) makes working with labelled
|
(description "Xarray (formerly xray) makes working with labelled
|
||||||
|
|
Loading…
Reference in a new issue