guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2d2cacdf8571b201a7983c4882cc8cc93ec99912
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Aug 9 12:53:38 2025 +0100
gnu: python-sphinx-repoze-autointerface: Update to 1.0.0.
* gnu/packages/sphinx.scm (python-sphinx-repoze-autointerface): Update to
1.0.0.
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: I10d3d48a21c969c0ca49d19044c92197ec0ed02a
---
gnu/packages/sphinx.scm | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 3f8259b1d4..2ff7ba885a 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1007,22 +1007,25 @@ use in your Sphinx docs.")
(define-public python-sphinx-repoze-autointerface
(package
(name "python-sphinx-repoze-autointerface")
- (version "0.8")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "repoze.sphinx.autointerface" version))
- (sha256
- (base32
- "08ycivzf7bh4a1zcyp31hbyqs1b2c9r26raa3vxjwwmbfqr3iw4f"))))
- (build-system python-build-system)
+ (version "1.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "repoze.sphinx.autointerface" version))
+ (sha256
+ (base32 "18981v34cyw8r6q19syx2vy6yjbc6afyz3287qavk5j6791g2ss8"))))
+ (build-system pyproject-build-system)
(arguments '(#:tests? #f)) ; No tests.
+ (native-inputs
+ (list python-setuptools))
(propagated-inputs
- (list python-sphinx python-zope-interface))
+ (list python-sphinx
+ python-zope-interface))
+ (home-page "https://github.com/repoze/repoze.sphinx.autointerface")
(synopsis "Auto-generate Sphinx API docs from Zope interfaces")
(description "This package defines an extension for the Sphinx
documentation
system. The extension allows generation of API documentation by
introspection of @code{zope.interface} instances in code.")
- (home-page "https://github.com/repoze/repoze.sphinx.autointerface")
(license license:repoze)))
(define-public python-sphinx-prompt