summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-08 00:29:47 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-08 07:43:01 +0100
commit0ae79a787f81e680e3983813c684a7d82dc213f3 (patch)
treeafd94f91e499f9ecf74f686c5d5e1156a13b21eb /gnu/packages/python-xyz.scm
parent6ea46370eae357f29fd0fb92da8eb43068f1e35e (diff)
gnu: python-tablib: Update to 3.8.0.
* gnu/packages/python-xyz.scm (python-tablib): Update to 3.8.0. [build-system]: Swap to pyproject. [arguments] <phases>: Use default 'check. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I4f248c87f27f582021a0ae739d0ebec03f824319
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm27
1 files changed, 11 insertions, 16 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f97f4ae45bc..80c966e200e 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37105,27 +37105,21 @@ pythonic way.")
(define-public python-tablib
(package
(name "python-tablib")
- (version "3.0.0")
+ (version "3.8.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "tablib" version))
(sha256
- (base32 "03f1z6jq6rf67gwhbm9ma4rydm8h447a5nh5lcs5l8jg8l4aqg7q"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (setenv "GUIX_PYTHONPATH"
- (string-append (getcwd) "/build/lib:"
- (getenv "GUIX_PYTHONPATH")))
- (invoke "pytest")))))))
+ (base32 "0ayv93q7kpii6z3n57i6b78mpr1ibwd70nvd981a05d7cpfbrn4l"))))
+ (build-system pyproject-build-system)
(native-inputs
- (list python-pandas ;; required for test-suite
- python-pytest python-pytest-cov python-setuptools-scm))
+ (list python-pandas
+ python-pytest
+ python-pytest-cov
+ python-setuptools
+ python-setuptools-scm
+ python-wheel))
(propagated-inputs
(list python-markuppy
python-odfpy
@@ -37136,7 +37130,8 @@ pythonic way.")
python-xlwt))
(home-page "https://tablib.readthedocs.io")
(synopsis "Format agnostic tabular data library")
- (description "@code{tablib} is a format-agnostic tabular dataset library,
+ (description
+ "@code{tablib} is a format-agnostic tabular dataset library,
written in Python. Supported output formats are Excel (Sets + Books),
JSON (Sets + Books), YAML (Sets + Books), HTML (Sets), Jira (Sets),
TSV (Sets), ODS (Sets), CSV (Sets), and DBF (Sets).