From 2bc91e4d7e26e8560943576bbe6b5cd522413fbf Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sat, 24 Mar 2018 10:54:58 +0000 Subject: gnu: Add python-cppclean. --- gnu/packages/python.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 386804a531..d67693c8c8 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15292,3 +15292,22 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "Static code checker for CMake files") (license license:asl2.0))) + +(define-public python-cppclean + (package + (name "python-cppclean") + (version "0.12") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cppclean" version)) + (sha256 + (base32 + "05p0qsmrn3zhp33rhdys0ddn8hql6z25sdvbnccqwps8jai5wq2r")))) + (build-system python-build-system) + (home-page "https://github.com/myint/cppclean") + (synopsis + "Find problems in C++ source that slow development of large code bases.") + (description + "Find problems in C++ source that slow development of large code bases.") + (license #f))) -- cgit v1.2.3