Merge pull request #56851 from knedlsepp/fix-gcovr

pythonPackages.gcovr: Fix build
This commit is contained in:
worldofpeace 2019-06-01 11:38:18 -04:00 committed by GitHub
commit 3a8a08dac4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, jinja2
}:
buildPythonPackage rec {
@ -12,10 +13,19 @@ buildPythonPackage rec {
sha256 = "ca94c337f2d9a70db177ec4330534fad7b2b772beda625c1ec071fbcf1361e22";
};
propagatedBuildInputs = [
jinja2
];
# 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;
meta = with stdenv.lib; {
description = "A Python script for summarizing gcov data";
license = licenses.bsd0;
homepage = http://gcovr.com/;
homepage = https://www.gcovr.com/;
};
}

View file

@ -10383,6 +10383,8 @@ in
gcab = callPackage ../development/libraries/gcab { };
gcovr = with python3Packages; toPythonApplication gcovr;
gcr = callPackage ../development/libraries/gcr { };
gdl = callPackage ../development/libraries/gdl { };