diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-27 09:43:44 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-27 10:08:15 +0100 |
commit | 2b83440d8989d4d80b9d01b84c6cba23122b5f15 (patch) | |
tree | 67fd4ef8d387f3682d7c214d813449b06c2c55e9 | |
parent | 5fe93c0a642700d8f8a6e19c7ad4855b0d6a2fc7 (diff) |
gnu: lcov-cobertura: Update to 2.1.1.
* gnu/packages/code.scm (lcov-cobertura): Update to 2.1.1.
[build-system]: Use pyproject.
[native-inputs]: Add python-pytest, python-setuptools,
python-setuptools-scm, python-wheel, and python-xmldiff.
Change-Id: I6138d4fd48a05075ff8daf1b5fbe4e06bc9cc45e
-rw-r--r-- | gnu/packages/code.scm | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 880ece6343..6d9e678349 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -24,6 +24,7 @@ ;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo> ;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2025 Ada Stevenson <adanskana@gmail.com> +;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -50,6 +51,7 @@ #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) + #:use-module (guix build-system pyproject) #:use-module (guix build-system trivial) #:use-module (guix build-system go) #:use-module (gnu packages) @@ -85,6 +87,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages pretty-print) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-web) #:use-module (gnu packages python-xyz) #:use-module (gnu packages qt) @@ -605,15 +608,20 @@ functionality such as HTML output.") (define-public lcov-cobertura (package (name "python-lcov-cobertura") - (version "1.6") + (version "2.1.1") (source (origin (method url-fetch) (uri (pypi-uri "lcov_cobertura" version)) (sha256 - (base32 - "02ar6yjazlxq4p64cz9gag08bvakmzjrp147jara9wlnlbc96j8g")))) - (build-system python-build-system) + (base32 "13xmr249c6qygm14gilb0icrsgb35ghsrr14a1zvppmxy9jf5a7g")))) + (build-system pyproject-build-system) + (native-inputs + (list python-pytest + python-setuptools + python-setuptools-scm + python-wheel + python-xmldiff)) (home-page "https://eriwen.github.io/lcov-to-cobertura-xml/") (synopsis "LCOV to Cobertura XML converter") (description |