diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2023-12-13 22:56:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-04-22 11:29:30 +0200 |
commit | 43965c93aee12b1070bfbcb053af03d990f07bcf (patch) | |
tree | a4182629c87cd5b83214cb46a97f0cf7c8edd210 | |
parent | 118b2f79f8c5575b0ed722accdefd969cc234197 (diff) | |
download | guix-43965c93aee12b1070bfbcb053af03d990f07bcf.tar.gz guix-43965c93aee12b1070bfbcb053af03d990f07bcf.zip |
gnu: python-openpyxl: Update to 3.0.10.
* gnu/packages/python-xyz.scm (python-openpyxl): Update to 3.0.10.
[build-system]: Use pyproject-build-system.
[arguments]: Delete check phase replacement.
Change-Id: I1a537050f1e9f109189150d0d73e87bbd87dcb00
-rw-r--r-- | gnu/packages/python-xyz.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index beea08ba64..a1f5e6fb0a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4018,7 +4018,7 @@ server.") (define-public python-openpyxl (package (name "python-openpyxl") - (version "3.0.9") + (version "3.0.10") (source (origin ;; We use the upstream repository, as the tests are not included in the @@ -4029,13 +4029,8 @@ server.") (changeset version))) (file-name (string-append name "-" version "-checkout")) (sha256 - (base32 "1p8xvc2gjw6zyzbd7qdvc3x178sm00ymrbyh9539l4fpzgxh0j9c")))) - (build-system python-build-system) - (arguments - `(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "pytest")))))) + (base32 "0f8ym32vdn8wyziiy5bz8iiwvgj7dlccy86wkfcn5syqgivgqnv9")))) + (build-system pyproject-build-system) (native-inputs (list python-lxml python-pillow python-pytest)) (propagated-inputs (list python-et-xmlfile python-jdcal)) (home-page "https://openpyxl.readthedocs.io") |