diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-06 14:37:34 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2024-06-30 09:21:52 +0200 |
commit | e5b6c6fd510fbc07c88cf39c642b7a0fdc36be8c (patch) | |
tree | 6586f280166acee747ba6b2ef4853e40b478acf4 | |
parent | 366600d635d4f859491f6b6bf3beace33c7aed36 (diff) |
gnu: python-openpyxl: Add Setuptools and Wheel.
* gnu/packages/python-xyz.scm (python-openpyxl)[native-inputs]: Add
python-setuptools and python-wheel.
Change-Id: I38368e62af3ab117141cd42bf8181fdb5b1f59fb
-rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7180c006ca..b49fa84e3c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4198,7 +4198,11 @@ server.") (sha256 (base32 "0f8ym32vdn8wyziiy5bz8iiwvgj7dlccy86wkfcn5syqgivgqnv9")))) (build-system pyproject-build-system) - (native-inputs (list python-lxml python-pillow python-pytest)) + (native-inputs (list python-lxml + python-pillow + python-pytest + python-setuptools + python-wheel)) (propagated-inputs (list python-et-xmlfile python-jdcal)) (home-page "https://openpyxl.readthedocs.io") (synopsis "Python library to read/write Excel 2010 XLSX/XLSM files") |