summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-26 22:20:44 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-27 21:37:16 +0100
commit06c8ae0c3d784c74dbb6d2e91d3de1633c4d81e3 (patch)
tree6699994f26bbe7d4785ccdf3c158dfe942dbcbc8 /gnu/packages/python-xyz.scm
parent8b627e931ae65c74581b839275d50fdb07ab2666 (diff)
gnu: python-rich-tables: Update to 0.8.0.
* gnu/packages/python-xyz.scm (python-rich-tables): Update to 0.8.0. [arguments] <test-flags>: Skip one test. [propagated-inputs]: Add python-humanize. Change-Id: If6472174a057eba03ae9a9c5c367a577b5c29db0
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm10
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 65854a7c40..f96c498dd5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -4179,7 +4179,7 @@ with Numpy and SciPy.")
(define-public python-rich-tables
(package
(name "python-rich-tables")
- (version "0.6.1")
+ (version "0.8.0")
(source
(origin
(method git-fetch) ; no tests data in PyPi package
@@ -4188,8 +4188,13 @@ with Numpy and SciPy.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "1wqr6sldf97ycs4gfvsqhbh1ki2kgsaicsy44g9lspvlda5nfcp1"))))
+ (base32 "1gkwgxcjnghn0alqw53kgb4ixf047dnb49kc0af3blvcwnmfmb5f"))))
(build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags
+ ;; TypeError: can't subtract offset-naive and offset-aware datetimes
+ #~(list "--deselect=tests/test_outputs.py::test_outputs[tests/json/album.json]")))
(native-inputs
(list python-freezegun
python-poetry-core
@@ -4197,6 +4202,7 @@ with Numpy and SciPy.")
python-pytest-cov))
(propagated-inputs
(list python-funcy
+ python-humanize
python-multimethod
python-platformdirs
python-rgbxy