python3Packages.gcovr: 4.1 -> 4.2

This commit is contained in:
Jonathan Ringer 2019-12-06 01:19:59 -08:00 committed by Jon
parent b3c9e72ef5
commit 060c5ac4f4
1 changed files with 10 additions and 2 deletions

View File

@ -2,19 +2,21 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, jinja2 , jinja2
, lxml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "gcovr"; pname = "gcovr";
version = "4.1"; version = "4.2";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "ca94c337f2d9a70db177ec4330534fad7b2b772beda625c1ec071fbcf1361e22"; sha256 = "0gyady7x3v3l9fm1zan0idaggqqcm31y7g5vxk7h05p5h7f39bjs";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
jinja2 jinja2
lxml
]; ];
# There are no unit tests in the pypi tarball. Most of the unit tests on the # There are no unit tests in the pypi tarball. Most of the unit tests on the
@ -22,6 +24,12 @@ buildPythonPackage rec {
# See also: https://github.com/gcovr/gcovr/issues/206 # See also: https://github.com/gcovr/gcovr/issues/206
doCheck = false; doCheck = false;
pythonImportsCheck = [
"gcovr"
"gcovr.workers"
"gcovr.configuration"
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A Python script for summarizing gcov data"; description = "A Python script for summarizing gcov data";
license = licenses.bsd0; license = licenses.bsd0;