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

commit b73c4f5ec3902343489d3720ee706bac975bf25f
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Jan 27 12:12:09 2026 +0100

    gnu: python-sphobjinv: Update to 2.3.1.3.
    
    * gnu/packages/sphinx.scm (python-sphobjinv): Update to 2.3.1.3.
    [source]: Switch to git-fetch.
    [native-inputs]: Improve style.  Add python-pytest-check.  Remove
    python-wheel.
    
    Change-Id: Iaefe484986127245d17af09b29b5b2df29459c8d
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/sphinx.scm | 20 ++++++++++++++------
 1 file changed, 14 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 73a55847c0..0529d9b8c1 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1408,18 +1408,26 @@ executed during the Sphinx build process.")
 (define-public python-sphobjinv
   (package
     (name "python-sphobjinv")
-    (version "2.3.1.1")
+    (version "2.3.1.3")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "sphobjinv" version))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/bskinn/sphobjinv";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "10x4g92agj6aai0lj0xpcx58zlm1zamzws1w9dczsl1izpz07ij7"))
+        (base32 "0cgnxadwjijpqyragbz0ibinhpbaw8l56az4a3i1m2x9hh589jbi"))
        (patches (search-patches "python-sphobjinv-defer-ssl-import.patch"))))
     (build-system pyproject-build-system)
     (native-inputs
-     (list python-dictdiffer python-pytest python-pytest-check
-           python-setuptools python-wheel python-sphinx python-stdio-mgr))
+     (list python-dictdiffer
+           python-pytest
+           python-pytest-check
+           python-pytest-retry
+           python-setuptools
+           python-sphinx
+           python-stdio-mgr))
     (propagated-inputs
      (list python-attrs python-certifi python-jsonschema))
     (home-page "https://github.com/bskinn/sphobjinv";)

Reply via email to