diff options
Diffstat (limited to 'crn/packages')
-rw-r--r-- | crn/packages/cpp.scm | 25 | ||||
-rw-r--r-- | crn/packages/patches/cpplint-pytest-version.patch | 13 |
2 files changed, 38 insertions, 0 deletions
diff --git a/crn/packages/cpp.scm b/crn/packages/cpp.scm new file mode 100644 index 0000000..4120342 --- /dev/null +++ b/crn/packages/cpp.scm @@ -0,0 +1,25 @@ +(define-module (crn packages cpp) + :use-module (crn packages) + :use-module (gnu packages) + :use-module (gnu packages cpp) + :use-module (guix packages) + :use-module (guix git-download)) + +(define-public cpplint-up + (package (inherit cpplint) + (name "cpplint-up") + (version "1.5.5") + (source + (origin + (method git-fetch) + ;; Fetch from github instead of pypi, since the test cases are not in + ;; the pypi archive. + (uri (git-reference + (url "https://github.com/cpplint/cpplint") + (commit version))) + (sha256 + (base32 "13l86aq0h1jga949k79k9x3hw2xqchjc162sclg2f99vz98zcz15")) + (file-name (git-file-name name version)) + (patches (crn/search-patches "cpplint-pytest-version.patch")))))) + +cpplint-up diff --git a/crn/packages/patches/cpplint-pytest-version.patch b/crn/packages/patches/cpplint-pytest-version.patch new file mode 100644 index 0000000..a388d4a --- /dev/null +++ b/crn/packages/patches/cpplint-pytest-version.patch @@ -0,0 +1,13 @@ +diff --git a/setup.py b/setup.py +index 0297e74..357adcb 100755 +--- a/setup.py ++++ b/setup.py +@@ -75,7 +75,7 @@ setup(name='cpplint', + long_description=open('README.rst').read(), + license='BSD-3-Clause', + setup_requires=[ +- "pytest-runner==5.2" ++ "pytest-runner" + ], + tests_require=test_required, + # extras_require allow pip install .[dev] |