mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #56851 from knedlsepp/fix-gcovr
pythonPackages.gcovr: Fix build
This commit is contained in:
commit
3a8a08dac4
2 changed files with 13 additions and 1 deletions
|
@ -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/;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue