gnu: python-gcovr: Move to python-check.

* gnu/packages/python-xyz.scm (python-gcovr): Move from here ...
* gnu/packages/python-check.scm: ... to here.

Change-Id: I99b0900bcf05d86509ddbfbd73b97a4f752d5882
This commit is contained in:
Sharlatan Hellseher 2025-04-13 22:23:49 +01:00
parent 611649a195
commit 143faecec3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 34 additions and 33 deletions

View file

@ -24,6 +24,7 @@
;;; Copyright © 2024 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2024 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi> ;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi>
;;; Copyright © 2025 Evgeny Pisemsky <mail@pisemsky.site> ;;; Copyright © 2025 Evgeny Pisemsky <mail@pisemsky.site>
;;; Copyright © 2025 Florent Pruvost <florent.pruvost@inria.fr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -521,6 +522,39 @@ the initial expected value of a test can be automatically set by running the
test itself.") test itself.")
(license license:expat)))) (license license:expat))))
(define-public python-gcovr
(package
(name "python-gcovr")
(version "8.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gcovr" version))
(sha256
(base32
"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
python-colorlog
python-pygments
python-tomli))
(home-page "https://gcovr.com/")
(synopsis "Utility for generating code coverage results")
(description
"Gcovr provides a utility for managing the use of the GNU gcov
utility and generating summarized code coverage results. It is inspired
by the Python coverage.py package, which provides a similar utility for
Python.")
(license license:bsd-3)))
(define-public python-green (define-public python-green
(package (package
(name "python-green") (name "python-green")

View file

@ -33368,39 +33368,6 @@ prevent debuggers and other applications from inspecting the memory within
your process.") your process.")
(license license:expat))) (license license:expat)))
(define-public python-gcovr
(package
(name "python-gcovr")
(version "8.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "gcovr" version))
(sha256
(base32
"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
python-colorlog
python-pygments
python-tomli))
(home-page "https://gcovr.com/")
(synopsis "Utility for generating code coverage results")
(description
"Gcovr provides a utility for managing the use of the GNU gcov
utility and generating summarized code coverage results. It is inspired
by the Python coverage.py package, which provides a similar utility for
Python.")
(license license:bsd-3)))
(define-public python-owslib (define-public python-owslib
(package (package
(name "python-owslib") (name "python-owslib")