2018-10-16 21:11:43 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-03-04 21:42:03 +00:00
|
|
|
, jinja2
|
2019-12-06 09:19:59 +00:00
|
|
|
, lxml
|
2018-10-16 21:11:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gcovr";
|
2019-12-06 09:19:59 +00:00
|
|
|
version = "4.2";
|
2018-10-16 21:11:43 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-06 09:19:59 +00:00
|
|
|
sha256 = "0gyady7x3v3l9fm1zan0idaggqqcm31y7g5vxk7h05p5h7f39bjs";
|
2018-10-16 21:11:43 +01:00
|
|
|
};
|
|
|
|
|
2019-03-04 21:42:03 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
jinja2
|
2019-12-06 09:19:59 +00:00
|
|
|
lxml
|
2019-03-04 21:42:03 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# There are no unit tests in the pypi tarball. Most of the unit tests on the
|
|
|
|
# github repository currently only work with gcc5, so we just disable them.
|
|
|
|
# See also: https://github.com/gcovr/gcovr/issues/206
|
|
|
|
doCheck = false;
|
|
|
|
|
2019-12-06 09:19:59 +00:00
|
|
|
pythonImportsCheck = [
|
|
|
|
"gcovr"
|
|
|
|
"gcovr.workers"
|
|
|
|
"gcovr.configuration"
|
|
|
|
];
|
|
|
|
|
2018-10-16 21:11:43 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A Python script for summarizing gcov data";
|
|
|
|
license = licenses.bsd0;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.gcovr.com/";
|
2018-10-16 21:11:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|