guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 206004403cc6889624a27604213ca52f1ec77892
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Nov 23 18:59:39 2025 +0100
gnu: python-sphinx-autobuild: Update to 2025.08.25.
* gnu/packages/sphinx.scm (python-sphinx-autobuild): Update to 2025.08.25.
[source]: Switch to git-fetch.
[propagated-inputs]: Add python-starlette, python-uvicorn,
python-watchfiles, python-websockets.
[native-inputs]: Add python-httpx.
Change-Id: Ieac2da4f9bec9d5ee588376bcc45105c2005a8cb
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/sphinx.scm | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 2fc7511438..ba9ecc96ca 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1242,16 +1242,25 @@ are redirected.")
(define-public python-sphinx-autobuild
(package
(name "python-sphinx-autobuild")
- (version "2021.3.14")
+ (version "2025.08.25")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "sphinx-autobuild" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/GaretJax/sphinx-autobuild")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "019z8kvnaw11r41b6pfdy9iz4iwyr0s51hs0a5djn797dsva676y"))))
+ (base32 "1mnhqjvr9ikr938hgy2jm32p2rqldq4n7s1ba4svbqbnbw5lpy15"))))
(build-system pyproject-build-system)
- (propagated-inputs (list python-colorama python-livereload python-sphinx))
- (native-inputs (list python-flit-core python-pytest))
+ (propagated-inputs
+ (list python-colorama
+ python-sphinx
+ python-starlette
+ python-uvicorn
+ python-watchfiles
+ python-websockets))
+ (native-inputs (list python-flit-core python-httpx python-pytest))
(home-page "https://github.com/GaretJax/sphinx-autobuild")
(synopsis "Rebuild Sphinx documentation when a change is detected")
(description