diff options
author | Christopher Baines <mail@cbaines.net> | 2018-03-24 10:54:49 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 09:22:53 +0000 |
commit | cfee12aaaf86c18e979a960a154a361f7f509723 (patch) | |
tree | 42aca202a6bd103809fb78864fabf7b78977ca4f | |
parent | 150a49e2df87f5020dfb538afe8178a8cc895495 (diff) | |
download | gnu-guix-cfee12aaaf86c18e979a960a154a361f7f509723.tar gnu-guix-cfee12aaaf86c18e979a960a154a361f7f509723.tar.gz |
gnu: Add python-cmakelint.
-rw-r--r-- | gnu/packages/python.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d0eb3a2ca0..386804a531 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15274,3 +15274,21 @@ class in a @acronym{DRY, Don't Repeat Yourself} way.") (description "Removes unused imports and unused variables") (license #f))) + +(define-public python-cmakelint + (package + (name "python-cmakelint") + (version "1.3.4.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "cmakelint" version)) + (sha256 + (base32 + "1fb7jlkp6bxx2i80g0z4xl11i927lh74v9bbnkgv9raafqphj9pg")))) + (build-system python-build-system) + (home-page "https://github.com/richq/cmake-lint") + (synopsis "Static code checker for CMake files") + (description + "Static code checker for CMake files") + (license license:asl2.0))) |