From 973816c38f4621f87212dfa97316892d521335af Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 23 Nov 2025 13:37:09 +0100 Subject: [PATCH] gnu: python-sphinx-argparse: Update to 0.5.2. * gnu/packages/sphinx.scm (python-sphinx-argparse): Update to 0.5.2. [build-system]: Switch to pyproject-build-system. [propagated-inputs]: Add python-docutils. [native-inputs]: Remove python-commomark, python-sphinx-rtd-theme. Add python-flit-core, python-lxml, python-setuptools, python-typing-extensions. Change-Id: Ife8585e1b19b332f764a74987bff6b1f2b83ca6f Signed-off-by: Sharlatan Hellseher --- gnu/packages/sphinx.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index cf088f0bf4589a0fa4b13b2c9c0cc22ab6146ce9..72dd6f7b0d06fd4b95eca3d29415de444269bca6 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -957,18 +957,22 @@ Sphinx documentation system. It's the default theme of Sphinx.") (define-public python-sphinx-argparse (package (name "python-sphinx-argparse") - (version "0.3.1") + (version "0.5.2") (source (origin (method url-fetch) (uri (pypi-uri "sphinx-argparse" version)) (sha256 - (base32 "07nw68nrbpzsswb5bz8gdb5allgj6jnz8m81afhr9v6c8fyiq5c2")))) - (build-system python-build-system) + (base32 "0cph8iv4whf6r6kc3fzl3sbkbm7qm4lbm604v9pzpdllm27jydg5")))) + (build-system pyproject-build-system) (propagated-inputs - (list python-sphinx)) + (list python-docutils python-sphinx)) (native-inputs - (list python-commonmark python-pytest python-sphinx-rtd-theme)) + (list python-flit-core + python-lxml + python-pytest + python-setuptools + python-typing-extensions)) (home-page "https://github.com/ribozz/sphinx-argparse") (synopsis "Sphinx extension for documenting argparse commands and options") (description