nixpkgs/pkgs/by-name/cp/cpplint/package.nix

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

48 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2024-10-10 09:19:05 +01:00
{
lib,
python3Packages,
fetchFromGitHub,
versionCheckHook,
2024-10-10 09:19:05 +01:00
}:
2019-11-13 14:39:03 +00:00
python3Packages.buildPythonApplication rec {
pname = "cpplint";
version = "2.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "cpplint";
repo = "cpplint";
rev = "refs/tags/${version}";
hash = "sha256-076363ZwcriPb+Fn9S5jay8oL+LlBTNh+IqQRCAndRo=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail "pytest-cov" "" \
--replace-fail "--cov-fail-under=90 --cov=cpplint" ""
'';
build-system = with python3Packages; [
setuptools
];
nativeCheckInputs = with python3Packages; [
parameterized
pytestCheckHook
pytest-timeout
testfixtures
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
meta = {
homepage = "https://github.com/cpplint/cpplint";
description = "Static code checker for C++";
changelog = "https://github.com/cpplint/cpplint/releases/tag/${version}";
mainProgram = "cpplint";
maintainers = [ lib.maintainers.bhipple ];
license = [ lib.licenses.bsd3 ];
};
}