diff options
Diffstat (limited to 'gnu/packages/sphinx.scm')
-rw-r--r-- | gnu/packages/sphinx.scm | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 1211a5f3e7..90bf376b39 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1331,22 +1331,12 @@ executed during the Sphinx build process.") (method url-fetch) (uri (pypi-uri "sphobjinv" version)) (sha256 - (base32 - "10x4g92agj6aai0lj0xpcx58zlm1zamzws1w9dczsl1izpz07ij7")) - (patches (search-patches - "python-sphobjinv-defer-ssl-import.patch")))) - (build-system python-build-system) - (arguments - (list - #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest"))))))) + (base32 "10x4g92agj6aai0lj0xpcx58zlm1zamzws1w9dczsl1izpz07ij7")) + (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-sphinx python-stdio-mgr)) + python-setuptools python-wheel python-sphinx python-stdio-mgr)) (propagated-inputs (list python-attrs python-certifi python-jsonschema)) (home-page "https://github.com/bskinn/sphobjinv") |