nixpkgs-suyu/pkgs/development/tools/analysis/cpplint/default.nix

31 lines
759 B
Nix
Raw Normal View History

2019-11-13 15:39:03 +01:00
{ lib, python3Packages, fetchFromGitHub }:
2019-11-13 15:39:03 +01:00
python3Packages.buildPythonApplication rec {
pname = "cpplint";
2020-06-16 02:50:53 +02:00
version = "1.5.1";
# Fetch from github instead of pypi, since the test cases are not in the pypi archive
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2020-06-16 02:50:53 +02:00
sha256 = "0k927mycj1k4l3fbxrk597bhcjl2nrpaas1imbjgk64cyq8dv7lh";
};
postPatch = ''
patchShebangs cpplint_unittest.py
'';
2020-06-16 02:50:53 +02:00
checkInputs = with python3Packages; [ pytest pytestrunner ];
checkPhase = ''
./cpplint_unittest.py
'';
meta = with lib; {
homepage = "https://github.com/cpplint/cpplint";
description = "Static code checker for C++";
maintainers = [ maintainers.bhipple ];
license = [ licenses.bsd3 ];
};
}