From a8e7477aa46e75c5ada4b62502a831b040812bca Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:55:30 +0000 Subject: gnu: Add python-cpplint. --- gnu/packages/python.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d67693c8c8..22f0e61920 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15311,3 +15311,23 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "Find problems in C++ source that slow development of large code bases.") (license #f))) + +(define-public python-cpplint + (package + (name "python-cpplint") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cpplint" version)) + (sha256 + (base32 + "06b7jf9vii2rp8q05h5h6jsrflrwpv2bd5chrj2drij476f16xk8")))) + (build-system python-build-system) + (home-page + "http://en.wikipedia.org/wiki/Cpplint") + (synopsis + "An automated checker to make sure a C++ file follows Google's C++ style guide") + (description + "An automated checker to make sure a C++ file follows Google's C++ style guide") + (license #f))) -- cgit v1.2.3