guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit cfa6d54d7c45566bff28866f8cf6ec4a63493bcd
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Sep 21 12:00:59 2025 +0200

    gnu: python-sphinx-autodoc-typehints: Update to 1.25.3.
    
    * gnu/packages/sphinx.scm (python-sphinx-autodoc-typehints): Update to 
1.25.3.
    [arguments]<#:test-flags>: Ignore additional failing test.
    [native-inputs]: Remove python-typing-extensions.
    
    Change-Id: I444d2415c5a2fb8bf84ff55b92b5b14a241571c3
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/sphinx.scm | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index ec69982393..5d04470960 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1233,7 +1233,7 @@ enabled web server.")
 (define-public python-sphinx-autodoc-typehints
   (package
     (name "python-sphinx-autodoc-typehints")
-    (version "1.23.0")
+    (version "1.25.3")
     (source
      (origin
        (method git-fetch)               ;no tests in pypi archive
@@ -1243,13 +1243,17 @@ enabled web server.")
        (file-name (git-file-name name version))
        (sha256
         (base32
-         "0z5na9cxqq4xc9ikig1s2fwbwl5pjwm04z9zwidbp2lm6k53xs8b"))))
+         "1pw9dzxrq67m0x92c0v4zqmf8llkaiw2j2plqj6n7kcravg26n6v"))))
     (build-system pyproject-build-system)
     (arguments
      (list
-      ;; This test requires to download an objects.inv file
-      ;; from the Sphinx website.
-      #:test-flags '(list "-k" "not test_format_annotation")
+      #:test-flags
+      #~(list "-k"
+              ;; This test requires to download an objects.inv file
+              ;; from the Sphinx website.
+              (string-append "not test_format_annotation"
+                             ;; XXX: Trailing -- missing.
+                             " and not test_always_document_param_types"))
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'build 'pretend-version
@@ -1265,8 +1269,7 @@ enabled web server.")
            python-nptyping
            python-pytest
            python-setuptools-scm
-           python-sphobjinv
-           python-typing-extensions))
+           python-sphobjinv))
     (propagated-inputs
      (list python-sphinx))
     (home-page "https://pypi.org/project/sphinx-autodoc-typehints/";)

Reply via email to