mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 13:09:23 -05:00
gnu: Add python-codacy-coverage.
* gnu/packages/python-check.scm (python-codacy-coverage): New variable.
This commit is contained in:
parent
7261bdca4e
commit
9532c0bb17
1 changed files with 24 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
|
;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -289,3 +290,26 @@ (define-public python-pytest-virtualenv
|
||||||
(description "This package provides a virtualenv fixture for the py.test
|
(description "This package provides a virtualenv fixture for the py.test
|
||||||
framework.")
|
framework.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-codacy-coverage
|
||||||
|
(package
|
||||||
|
(name "python-codacy-coverage")
|
||||||
|
(version "1.3.11")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "codacy-coverage" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1g0c0w56xdkmqb8slacyw5qhzrkp814ng3ddh2lkiij58y9m2imr"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f)); no tests
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-check-manifest" ,python-check-manifest)))
|
||||||
|
(home-page "https://github.com/codacy/python-codacy-coverage")
|
||||||
|
(synopsis "Codacy coverage reporter for Python")
|
||||||
|
(description "This package analyses Python test suites and reports how much
|
||||||
|
of the code is covered by them. This tool is part of the Codacy suite for
|
||||||
|
analysing code quality.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue