~ruther/guix-local

5f00848dc572a025ff24e105cf07194f5825fc99 — Nicolas Graves 7 months ago 59b6a73
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 <sharlatanus@gmail.com>
1 files changed, 4 insertions(+), 14 deletions(-)

M gnu/packages/sphinx.scm
M gnu/packages/sphinx.scm => gnu/packages/sphinx.scm +4 -14
@@ 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