diff options
author | Florent Pruvost <florent.pruvost@inria.fr> | 2025-04-11 15:53:24 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-13 22:24:55 +0100 |
commit | 611649a195433655d4a59dae4f8b7b4c645fb00d (patch) | |
tree | fbed389f91e3a539f6ee347cebc5c5bce6d132cf | |
parent | 5559bc1d36e9a0dd130e5a5d700f4639c006f2a7 (diff) | |
download | guix-611649a195433655d4a59dae4f8b7b4c645fb00d.tar.gz guix-611649a195433655d4a59dae4f8b7b4c645fb00d.zip |
gnu: python-gcovr: Update to 8.3.
* gnu/packages/python-xyz.scm (python-gcovr): Update to 8.3.
[build-system]: Switch to pyproject.
[native-inputs]: Add python-hatchling, python-hatch-fancy-pypi-readme,
python-hatch-vcs, python-pytest, and python-pytest-timeout.
[propagated-inputs]: Add python-colorlog, python-pygments, and
python-tomli.
Change-Id: I3c4f0378ba1f3f0e380a4940c8e1ad3aaf5e5a5a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 988d345f01..f2a95f532e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -33371,17 +33371,27 @@ your process.") (define-public python-gcovr (package (name "python-gcovr") - (version "4.2") + (version "8.3") (source (origin (method url-fetch) (uri (pypi-uri "gcovr" version)) (sha256 (base32 - "0gyady7x3v3l9fm1zan0idaggqqcm31y7g5vxk7h05p5h7f39bjs")))) - (build-system python-build-system) + "0ych0kqbxp5giksdkh6i32vh97zrsh3m2rfs02c8rxx7qkwp38zs")))) + (build-system pyproject-build-system) + (native-inputs + (list python-hatchling + python-hatch-fancy-pypi-readme + python-hatch-vcs + python-pytest + python-pytest-timeout)) (propagated-inputs - (list python-lxml python-jinja2)) + (list python-lxml + python-jinja2 + python-colorlog + python-pygments + python-tomli)) (home-page "https://gcovr.com/") (synopsis "Utility for generating code coverage results") (description |