guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit ea5402f82145b59abebcdcf55ec27bba82c07039
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Thu Dec 4 22:38:04 2025 +0900
gnu: python-sphinx-gallery: Propagate python-joblib.
* gnu/packages/sphinx.scm (python-sphinx-gallery)
[propagated-inputs]: Add python-joblib.
Change-Id: Ia14e770a620a4398c48ad3dca28a6a27a17b4ea4
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/sphinx.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index c60ea5f4de..3cb7ee1016 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -907,7 +907,11 @@ Sphinx documents in web templates and to handle searches.")
python-statsmodels
python-wheel))
(propagated-inputs
- (list python-pillow
+ ;; Propagate joblib as it's needed when building Sphinx doc in parallel
+ ;; (otherwise the error "joblib must be importable when parallel mode is
+ ;; enabled" is thrown).
+ (list python-joblib
+ python-pillow
python-sphinx))
(home-page "https://sphinx-gallery.github.io/stable/index.html")
(synopsis "Generate an examples gallery automatically")