diff options
author | Nicolas Graves via Guix-patches via <guix-patches@gnu.org> | 2024-11-24 21:16:27 +0100 |
---|---|---|
committer | Zheng Junjie <z572@z572.online> | 2025-06-23 12:31:14 +0800 |
commit | d36549fcabef1cb40b9398df9707560c92ef8341 (patch) | |
tree | e85aba13e5361a1c7dbe8c300800de136578d9b0 | |
parent | ca33698127326601a5f59cebff3a95fcfe70cb9b (diff) |
gnu: xenon: Update to 0.9.3.
* gnu/packages/code.scm (xenon): Update to 0.9.3.
[properties]: Add lint-hidden-cpe-vendors property.
Signed-off-by: Zheng Junjie <z572@z572.online>
-rw-r--r-- | gnu/packages/code.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index 7b6ce86b27..9d048933d3 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -1058,14 +1058,14 @@ Using cscope, you can easily search for where symbols are used and defined.") (define-public xenon (package (name "xenon") - (version "0.9.0") + (version "0.9.3") (source (origin (method url-fetch) (uri (pypi-uri "xenon" version)) (sha256 (base32 - "1f4gynjzfckm3rjfywwgz1c7icfx3zjqirf16aj73xv0c9ncpffj")))) + "1yj31bqz2bphvvyb0jkas7bxc2rw76rf1csz0mwmvah8pbc3hxaa")))) (build-system python-build-system) (arguments (list #:tests? #f)) ;test suite not shipped with the PyPI archive (inputs (list python-pyyaml python-radon python-requests)) @@ -1077,6 +1077,7 @@ Ideally, @code{xenon} is run every time code is committed. Through command line options, various thresholds can be set for the complexity of code. It will fail (i.e., it will exit with a non-zero exit code) when any of these requirements is not met.") + (properties '((lint-hidden-cpe-vendors . ("vmware")))) (license license:expat))) (define-public python-xenon |