guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 942f868b66e74c5f298f9982ce8b3cd3014e9592
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jan 27 23:34:11 2026 +0100
gnu: python-sphinxext-opengraph: Update to 0.13.0.
* gnu/packages/sphinx.scm (python-sphinxext-opengraph): Update to 0.13.0.
[arguments]: Drop them.
[native-inputs]: Replace python-setuptools by python-flit-core.
Change-Id: I62f25c05029c214ad13ae689f23ade4bd239611f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/sphinx.scm | 21 ++++++++-------------
1 file changed, 8 insertions(+), 13 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index c1bed78927..4ad47de9db 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1221,27 +1221,22 @@ translate and to apply translation to Sphinx generated
document.")
(define-public python-sphinxext-opengraph
(package
(name "python-sphinxext-opengraph")
- (version "0.6.3")
+ (version "0.13.0")
(source
(origin
- (method git-fetch) ; no tests in PyPI release
+ (method git-fetch)
(uri (git-reference
(url "https://github.com/wpilibsuite/sphinxext-opengraph")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1wrgpan9z65fv4hbvisz4sypc4w5ammnxkyn5lhr43wdr6b967k1"))))
+ (base32 "0bif02izlzbra3mzghxrc5ngl6b3sr9sh7q22s9kydnzc5fpmmdd"))))
(build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'set-version
- (lambda _
- (substitute* "setup.py"
- (("main") #$version)))))))
- (native-inputs (list python-beautifulsoup4 python-pytest python-sphinx
- python-setuptools))
+ (native-inputs
+ (list python-beautifulsoup4
+ python-flit-core
+ python-pytest
+ python-sphinx))
(home-page "https://github.com/wpilibsuite/sphinxext-opengraph")
(synopsis "Sphinx Extension to enable OpenGraph support")
(description