summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/sphinx.scm20
1 files changed, 14 insertions, 6 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index ee3e9ec09bc..016d714bdd8 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -1462,18 +1462,26 @@ executed during the Sphinx build process.")
1462(define-public python-sphobjinv 1462(define-public python-sphobjinv
1463 (package 1463 (package
1464 (name "python-sphobjinv") 1464 (name "python-sphobjinv")
1465 (version "2.3.1.1") 1465 (version "2.3.1.3")
1466 (source 1466 (source
1467 (origin 1467 (origin
1468 (method url-fetch) 1468 (method git-fetch)
1469 (uri (pypi-uri "sphobjinv" version)) 1469 (uri (git-reference
1470 (url "https://github.com/bskinn/sphobjinv")
1471 (commit (string-append "v" version))))
1472 (file-name (git-file-name name version))
1470 (sha256 1473 (sha256
1471 (base32 "10x4g92agj6aai0lj0xpcx58zlm1zamzws1w9dczsl1izpz07ij7")) 1474 (base32 "0cgnxadwjijpqyragbz0ibinhpbaw8l56az4a3i1m2x9hh589jbi"))
1472 (patches (search-patches "python-sphobjinv-defer-ssl-import.patch")))) 1475 (patches (search-patches "python-sphobjinv-defer-ssl-import.patch"))))
1473 (build-system pyproject-build-system) 1476 (build-system pyproject-build-system)
1474 (native-inputs 1477 (native-inputs
1475 (list python-dictdiffer python-pytest python-pytest-check 1478 (list python-dictdiffer
1476 python-setuptools python-wheel python-sphinx python-stdio-mgr)) 1479 python-pytest
1480 python-pytest-check
1481 python-pytest-retry
1482 python-setuptools
1483 python-sphinx
1484 python-stdio-mgr))
1477 (propagated-inputs 1485 (propagated-inputs
1478 (list python-attrs python-certifi python-jsonschema)) 1486 (list python-attrs python-certifi python-jsonschema))
1479 (home-page "https://github.com/bskinn/sphobjinv") 1487 (home-page "https://github.com/bskinn/sphobjinv")