guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 5f00848dc572a025ff24e105cf07194f5825fc99
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Nov 23 18:55:53 2025 +0100
gnu: python-sphinx-autobuild: Switch to pyproject.
* gnu/packages/sphinx.scm (python-sphinx-autobuild):
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-flit-core.
Change-Id: Ic6e1e771cf945ae857c3279271e366956a2f8b63
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/sphinx.scm | 18 ++++--------------
1 file changed, 4 insertions(+), 14 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 1c583eda82..2fc7511438 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1248,20 +1248,10 @@ are redirected.")
(method url-fetch)
(uri (pypi-uri "sphinx-autobuild" version))
(sha256
- (base32
- "019z8kvnaw11r41b6pfdy9iz4iwyr0s51hs0a5djn797dsva676y"))))
- (build-system python-build-system)
- (arguments
- '(#:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "pytest" "-vv")))))))
- (propagated-inputs
- (list python-colorama python-livereload python-sphinx))
- (native-inputs
- (list python-pytest))
+ (base32 "019z8kvnaw11r41b6pfdy9iz4iwyr0s51hs0a5djn797dsva676y"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-colorama python-livereload python-sphinx))
+ (native-inputs (list python-flit-core python-pytest))
(home-page "https://github.com/GaretJax/sphinx-autobuild")
(synopsis "Rebuild Sphinx documentation when a change is detected")
(description