diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-05-06 14:37:34 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-11 21:18:10 +0100 |
commit | 3580cc9cfe447c791da1ee3fdf2606b282708aeb (patch) | |
tree | 17ee67e947a585da9b9f719cb028708456cd3ecd | |
parent | 9eb129f8f54a9245091e0c3290c26dec0f802d9f (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 23ab188cf8..661a7947a4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4313,7 +4313,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") |