diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-11-28 08:52:16 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:28:40 +0000 |
commit | 2da2a17af3ab8eaf240b7a9dc2d3d2ca646bcf4a (patch) | |
tree | 5c42a297028ef993dac28cbaa7bd046f607c5f74 | |
parent | 584b1e50044a433afae8fa6ea6b19b68eb2356fb (diff) | |
download | guix-2da2a17af3ab8eaf240b7a9dc2d3d2ca646bcf4a.tar.gz guix-2da2a17af3ab8eaf240b7a9dc2d3d2ca646bcf4a.zip |
gnu: cpplint: Add missing native inputs.
* gnu/packages/cpp.scm (cpplint)[native-inputs]: Add python-setuptools
and python-wheel.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/cpp.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 4fd5f8fa00..f56314757d 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -106,6 +106,7 @@ #:use-module (gnu packages onc-rpc) #:use-module (gnu packages perl) #:use-module (gnu packages python) + #:use-module (gnu packages python-build) #:use-module (gnu packages python-check) #:use-module (gnu packages pkg-config) #:use-module (gnu packages popt) @@ -1319,7 +1320,9 @@ library.") python-pytest python-pytest-cov python-pytest-runner - python-testfixtures)) + python-setuptools + python-testfixtures + python-wheel)) (home-page "https://github.com/cpplint/cpplint") (synopsis "Static code checker for C++") (description "@code{cpplint} is a command-line tool to check C/C++ files |