diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-06-28 15:35:53 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:36:14 +0100 |
| commit | c6f2ec4883fb6437ce4302d07b0dc97a445bdad3 (patch) | |
| tree | 34a7ea43a5273b454cd9c0d381b58fe6701dface | |
| parent | 0a668903fd6287e119cb6243233a0128ac341c61 (diff) | |
gnu: python-breathe: Update to 4.36.0.
* gnu/packages/sphinx.scm (python-breathe): Update to 4.36.0.
[build-system]: Use pyproject.
[arguments] <phases>: Use default 'check.
[native-inputs]: Add python-flit-core.
Change-Id: I9616dcda2e8ca2a471de513d49b1295c6f67d105
| -rw-r--r-- | gnu/packages/sphinx.scm | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 7004a7becb..996b9a4e55 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -1226,7 +1226,7 @@ scientific documentation.") (define-public python-breathe (package (name "python-breathe") - (version "4.35.0") + (version "4.36.0") (source (origin (method git-fetch) ;git repo has tests (uri (git-reference @@ -1235,17 +1235,14 @@ scientific documentation.") (file-name (git-file-name name version)) (sha256 (base32 - "1hlcrhr533yjkz9ds83xnmn8h6z3r6vfzz7qrpy14n9j4ysyz59c")))) - (build-system python-build-system) - (arguments - (list #:phases #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (with-directory-excursion "tests" - (invoke "python" "-m" "pytest" "-v")))))))) - (native-inputs (list python-pytest)) - (propagated-inputs (list python-docutils python-sphinx)) + "1jzljqiqyb0jdndakyc69l0as1hhp23ipsbqk4i2giknypqbi8ph")))) + (build-system pyproject-build-system) + (native-inputs + (list python-flit-core + python-pytest)) + (propagated-inputs + (list python-docutils + python-sphinx)) (home-page "https://www.breathe-doc.org") (synopsis "ReStructuredText and Sphinx bridge to Doxygen") (description "This package is an extension to reStructuredText and Sphinx |
