guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit b15af992362c67e62c7f39676c597c33ec5c2ce5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Aug 9 16:30:17 2025 +0100
gnu: python-openpyxl: Reduce closure size.
* gnu/packages/python-xyz.scm (python-openpyxl):
[propagated-inputs]: Remove python-jdcal - not listed in install
dependencies.
[native-inputs]: Remove python-wheel.
Change-Id: I862613faafe2c4fae4c85b26b38a882ea84f12b5
---
gnu/packages/python-xyz.scm | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 716220ef95..cd3433e7f5 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -5713,18 +5713,19 @@ server.")
;; PyPI releases.
(method hg-fetch)
(uri (hg-reference
- (url "https://foss.heptapod.net/openpyxl/openpyxl")
- (changeset version)))
+ (url "https://foss.heptapod.net/openpyxl/openpyxl")
+ (changeset version)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32 "17z6rrvv3q1axy9r13c2hln2pazfn9n5bhkzrbjcjakgbfjl6mss"))))
(build-system pyproject-build-system)
- (native-inputs (list python-lxml
- python-pillow
- python-pytest
- python-setuptools
- python-wheel))
- (propagated-inputs (list python-et-xmlfile python-jdcal))
+ (native-inputs
+ (list python-lxml
+ python-pillow
+ python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-et-xmlfile))
(home-page "https://openpyxl.readthedocs.io")
(synopsis "Python library to read/write Excel 2010 XLSX/XLSM files")
(description