diff options
| author | Maxim Cournoyer <maxim@guixotic.coop> | 2025-12-04 22:38:04 +0900 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-02-07 12:28:34 +0100 |
| commit | b94c530e7cc8cddb4cfe38f9d8ef976ef978e663 (patch) | |
| tree | 20eddb36148be23380d33f2a8480bbe4d245cf24 /gnu/packages | |
| parent | 3c0b1e31c6892f0b3d863ef74f4cbba0cbda84c7 (diff) | |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/sphinx.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index a4841d153b1..a077e6d4709 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -929,7 +929,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") |
