[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: python-breathe: Update to 4.35.0.
From: |
guix-commits |
Subject: |
04/10: gnu: python-breathe: Update to 4.35.0. |
Date: |
Thu, 13 Apr 2023 12:47:03 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository guix.
commit 1e5ef8763f7887886b00debca7f06d8ac42e7419
Author: Antero Mejr <antero@mailbox.org>
AuthorDate: Fri Apr 7 01:15:01 2023 +0000
gnu: python-breathe: Update to 4.35.0.
* gnu/packages/sphinx.scm (python-breathe): Update to 4.35.0.
Signed-off-by: Christopher Baines <mail@cbaines.net>
---
gnu/packages/sphinx.scm | 31 ++++++++++++++++++++-----------
1 file changed, 20 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index addf4393b2..40633b75c6 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -804,18 +804,27 @@ scientific documentation.")
(define-public python-breathe
(package
(name "python-breathe")
- (version "4.34.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "breathe" version))
- (sha256
- (base32
- "18fvphs1cb2cns9q82195fx7lmlwfikzwa10cczavpaax2jnh1xc"))))
+ (version "4.35.0")
+ (source (origin
+ (method git-fetch) ;git repo has tests
+ (uri (git-reference
+ (url "https://github.com/breathe-doc/breathe")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1hlcrhr533yjkz9ds83xnmn8h6z3r6vfzz7qrpy14n9j4ysyz59c"))))
(build-system python-build-system)
- (propagated-inputs
- (list python-docutils python-sphinx))
- (home-page "https://github.com/michaeljones/breathe")
+ (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))
+ (home-page "https://www.breathe-doc.org")
(synopsis "ReStructuredText and Sphinx bridge to Doxygen")
(description "This package is an extension to reStructuredText and Sphinx
to be able to read and render the Doxygen xml output.")
- branch master updated (8d347815c7 -> c371555a4b), guix-commits, 2023/04/13
- 01/10: gnu: guix-build-coordinator: Update to 0-77.7f6db4b., guix-commits, 2023/04/13
- 05/10: gnu: python-redis: Update to 4.5.4., guix-commits, 2023/04/13
- 09/10: gnu: cbatticon: Update to 1.6.13., guix-commits, 2023/04/13
- 08/10: gnu: freeciv: Update to 3.0.7., guix-commits, 2023/04/13
- 10/10: gnu: copyq: Update to 7.0.0., guix-commits, 2023/04/13
- 02/10: gnu: python-faker: Update to 15.0.0., guix-commits, 2023/04/13
- 04/10: gnu: python-breathe: Update to 4.35.0.,
guix-commits <=
- 06/10: gnu: minetest: Update to 5.7.0., guix-commits, 2023/04/13
- 03/10: gnu: rust-slog-stdlog: Update to 4.1.1., guix-commits, 2023/04/13
- 07/10: gnu: uxn: Update to 0.1.0-1.83237c9., guix-commits, 2023/04/13