summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2025-12-04 22:33:50 +0900
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:34 +0100
commit3c0b1e31c6892f0b3d863ef74f4cbba0cbda84c7 (patch)
treee9f37715a3b882be072cdc7657841ce34083eddb
parent483cc9b8e4ea21cbd08e77fd1840d17651c4212a (diff)
gnu: python-sphinx-gallery: Update to 0.20.0.
* gnu/packages/sphinx.scm (python-sphinx-gallery): Update to 0.20.0. [propagated-inputs]: Remove python-jupyterlite-sphinx. [native-inputs]: Add python-jupyterlite-sphinx python-pydata-sphinx-theme, python-sphinxcontrib-video, python-sphinx-design and python-statsmodels. Change-Id: I35c2dac4ac8fbca13f16c832e53d0851ca015c52 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/sphinx.scm17
1 files changed, 10 insertions, 7 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 938206f60b2..a4841d153b1 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -65,6 +65,7 @@
65 #:use-module (gnu packages time) 65 #:use-module (gnu packages time)
66 #:use-module (gnu packages python-science) 66 #:use-module (gnu packages python-science)
67 #:use-module (gnu packages graph) 67 #:use-module (gnu packages graph)
68 #:use-module (gnu packages statistics)
68 #:use-module (gnu packages tex) 69 #:use-module (gnu packages tex)
69 #:use-module (gnu packages xml)) 70 #:use-module (gnu packages xml))
70 71
@@ -885,13 +886,13 @@ Sphinx documents in web templates and to handle searches.")
885(define-public python-sphinx-gallery 886(define-public python-sphinx-gallery
886 (package 887 (package
887 (name "python-sphinx-gallery") 888 (name "python-sphinx-gallery")
888 (version "0.19.0") 889 (version "0.20.0")
889 (source 890 (source
890 (origin 891 (origin
891 (method url-fetch) 892 (method url-fetch)
892 (uri (pypi-uri "sphinx_gallery" version)) 893 (uri (pypi-uri "sphinx_gallery" version))
893 (sha256 894 (sha256
894 (base32 "1crfmzl61pj308nj5q4vb98d09gpcw3bmz8jlql2wr5d819cn044")))) 895 (base32 "0dfp12zjasnidh7l21zjjfkwamgmrh2p15cm6lnq2g8qqq81aa3h"))))
895 (build-system pyproject-build-system) 896 (build-system pyproject-build-system)
896 (arguments 897 (arguments
897 (list 898 (list
@@ -908,25 +909,27 @@ Sphinx documents in web templates and to handle searches.")
908 (native-inputs 909 (native-inputs
909 (list python-absl-py 910 (list python-absl-py
910 python-graphviz 911 python-graphviz
912 ;;python-intersphinx-registry TODO: package me!
911 python-ipython 913 python-ipython
912 python-joblib 914 python-joblib
915 python-jupyterlite-sphinx
913 python-lxml 916 python-lxml
914 ;; python-intersphinx-registry ; not packaged yet
915 python-matplotlib 917 python-matplotlib
916 python-numpy 918 python-numpy
917 python-packaging 919 python-packaging
918 python-plotly 920 python-plotly
921 python-pydata-sphinx-theme
919 python-pytest 922 python-pytest
920 python-pytest-cov 923 python-pytest-cov
921 python-seaborn 924 python-seaborn
922 python-setuptools 925 python-setuptools
923 python-setuptools-scm 926 python-setuptools-scm
924 ;; python-sphinxcontrib-video ; not packaged yet 927 python-sphinxcontrib-video
925 ;; python-statsmodels ; 928 python-sphinx-design
929 python-statsmodels
926 python-wheel)) 930 python-wheel))
927 (propagated-inputs 931 (propagated-inputs
928 (list python-jupyterlite-sphinx 932 (list python-pillow
929 python-pillow
930 python-sphinx)) 933 python-sphinx))
931 (home-page "https://sphinx-gallery.github.io/stable/index.html") 934 (home-page "https://sphinx-gallery.github.io/stable/index.html")
932 (synopsis "Generate an examples gallery automatically") 935 (synopsis "Generate an examples gallery automatically")