summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 14:36:20 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-08-26 14:36:26 +0100
commite42227e1c7e7055e27cecada52ec801a75e44909 (patch)
tree66b7eb9f78e697e803d6362ce644c8fdf975777e
parent6362d3445be4d0d454dd914f87df05280359a3c2 (diff)
gnu: python-sphinx-intl: Update to 2.3.2 fixing build.
* gnu/packages/sphinx.scm (python-sphinx-intl): Update to 2.3.2. Fixes: guix/guix#10825
-rw-r--r--gnu/packages/sphinx.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index f19bf497946..23a923abb5d 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1460,16 +1460,16 @@ to be able to read and render the Doxygen xml output.")
1460(define-public python-sphinx-intl 1460(define-public python-sphinx-intl
1461 (package 1461 (package
1462 (name "python-sphinx-intl") 1462 (name "python-sphinx-intl")
1463 (version "2.0.1") 1463 (version "2.3.2")
1464 (source 1464 (source
1465 (origin 1465 (origin
1466 (method git-fetch) 1466 (method git-fetch)
1467 (uri (git-reference 1467 (uri (git-reference
1468 (url "https://github.com/sphinx-doc/sphinx-intl") 1468 (url "https://github.com/sphinx-doc/sphinx-intl")
1469 (commit version))) 1469 (commit version)))
1470 (file-name (git-file-name name version)) 1470 (file-name (git-file-name name version))
1471 (sha256 1471 (sha256
1472 (base32 "0sla69l477qrr5jb3aw76qg4qg4gw7y5w557xbmbzm6jsv18ck86")))) 1472 (base32 "1hdn7d15kdh9vppa9wwvs6rzi8vb4wmwin57wxx0mhv9dx83w6p5"))))
1473 (build-system pyproject-build-system) 1473 (build-system pyproject-build-system)
1474 (arguments 1474 (arguments
1475 (list 1475 (list
@@ -1477,8 +1477,13 @@ to be able to read and render the Doxygen xml output.")
1477 ;; These tests require the transifex_client library. 1477 ;; These tests require the transifex_client library.
1478 #~(list "--ignore=tests/test_cmd_transifex.py" 1478 #~(list "--ignore=tests/test_cmd_transifex.py"
1479 "--ignore=tests/test_transifex.py"))) 1479 "--ignore=tests/test_transifex.py")))
1480 (native-inputs (list python-mock python-pytest python-setuptools)) 1480 (native-inputs
1481 (propagated-inputs (list python-sphinx python-click)) 1481 (list python-mock
1482 python-pytest
1483 python-setuptools))
1484 (propagated-inputs
1485 (list python-sphinx
1486 python-click))
1482 (home-page "https://github.com/sphinx-doc/sphinx-intl") 1487 (home-page "https://github.com/sphinx-doc/sphinx-intl")
1483 (synopsis 1488 (synopsis
1484 "Sphinx utility that makes it easy to translate and to apply translation") 1489 "Sphinx utility that makes it easy to translate and to apply translation")