nixpkgs/pkgs/development/python-modules/gcovr/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
805 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-03-04 21:42:03 +00:00
, jinja2
2019-12-06 09:19:59 +00:00
, lxml
, pygments
}:
buildPythonPackage rec {
pname = "gcovr";
2022-03-27 09:31:10 +00:00
version = "5.1";
src = fetchPypi {
inherit pname version;
2022-03-27 09:31:10 +00:00
sha256 = "sha256-d4CEQ1m/8LlsBBR9r/8l5uWF4FWFvVQjabvDd9ad4SE=";
};
2019-03-04 21:42:03 +00:00
propagatedBuildInputs = [
jinja2
2019-12-06 09:19:59 +00:00
lxml
pygments
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"
];
meta = with lib; {
description = "A Python script for summarizing gcov data";
license = licenses.bsd0;
homepage = "https://www.gcovr.com/";
};
}