summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-01-27 23:34:11 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:47 +0100
commit1de95c6fd1cb57ca20026c0dd3ab9c246fc491eb (patch)
tree7b3dd0c1e5071df473bb66795c6b381232529a7a
parent3618eab5b63e308e3fc468bb8713211e6c6bf502 (diff)
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 <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/sphinx.scm21
1 files changed, 8 insertions, 13 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 1d4f46365dd..4702659f1c8 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1275,27 +1275,22 @@ translate and to apply translation to Sphinx generated document.")
1275(define-public python-sphinxext-opengraph 1275(define-public python-sphinxext-opengraph
1276 (package 1276 (package
1277 (name "python-sphinxext-opengraph") 1277 (name "python-sphinxext-opengraph")
1278 (version "0.6.3") 1278 (version "0.13.0")
1279 (source 1279 (source
1280 (origin 1280 (origin
1281 (method git-fetch) ; no tests in PyPI release 1281 (method git-fetch)
1282 (uri (git-reference 1282 (uri (git-reference
1283 (url "https://github.com/wpilibsuite/sphinxext-opengraph") 1283 (url "https://github.com/wpilibsuite/sphinxext-opengraph")
1284 (commit (string-append "v" version)))) 1284 (commit (string-append "v" version))))
1285 (file-name (git-file-name name version)) 1285 (file-name (git-file-name name version))
1286 (sha256 1286 (sha256
1287 (base32 "1wrgpan9z65fv4hbvisz4sypc4w5ammnxkyn5lhr43wdr6b967k1")))) 1287 (base32 "0bif02izlzbra3mzghxrc5ngl6b3sr9sh7q22s9kydnzc5fpmmdd"))))
1288 (build-system pyproject-build-system) 1288 (build-system pyproject-build-system)
1289 (arguments 1289 (native-inputs
1290 (list 1290 (list python-beautifulsoup4
1291 #:phases 1291 python-flit-core
1292 #~(modify-phases %standard-phases 1292 python-pytest
1293 (add-after 'unpack 'set-version 1293 python-sphinx))
1294 (lambda _
1295 (substitute* "setup.py"
1296 (("main") #$version)))))))
1297 (native-inputs (list python-beautifulsoup4 python-pytest python-sphinx
1298 python-setuptools))
1299 (home-page "https://github.com/wpilibsuite/sphinxext-opengraph") 1294 (home-page "https://github.com/wpilibsuite/sphinxext-opengraph")
1300 (synopsis "Sphinx Extension to enable OpenGraph support") 1295 (synopsis "Sphinx Extension to enable OpenGraph support")
1301 (description 1296 (description