summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves via Guix-patches via <guix-patches@gnu.org>2024-11-24 21:16:27 +0100
committerZheng Junjie <z572@z572.online>2025-06-23 12:31:14 +0800
commitd36549fcabef1cb40b9398df9707560c92ef8341 (patch)
treee85aba13e5361a1c7dbe8c300800de136578d9b0 /gnu/packages
parentca33698127326601a5f59cebff3a95fcfe70cb9b (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>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/code.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 7b6ce86b278..9d048933d3f 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.")
1058(define-public xenon 1058(define-public xenon
1059 (package 1059 (package
1060 (name "xenon") 1060 (name "xenon")
1061 (version "0.9.0") 1061 (version "0.9.3")
1062 (source 1062 (source
1063 (origin 1063 (origin
1064 (method url-fetch) 1064 (method url-fetch)
1065 (uri (pypi-uri "xenon" version)) 1065 (uri (pypi-uri "xenon" version))
1066 (sha256 1066 (sha256
1067 (base32 1067 (base32
1068 "1f4gynjzfckm3rjfywwgz1c7icfx3zjqirf16aj73xv0c9ncpffj")))) 1068 "1yj31bqz2bphvvyb0jkas7bxc2rw76rf1csz0mwmvah8pbc3hxaa"))))
1069 (build-system python-build-system) 1069 (build-system python-build-system)
1070 (arguments (list #:tests? #f)) ;test suite not shipped with the PyPI archive 1070 (arguments (list #:tests? #f)) ;test suite not shipped with the PyPI archive
1071 (inputs (list python-pyyaml python-radon python-requests)) 1071 (inputs (list python-pyyaml python-radon python-requests))
@@ -1077,6 +1077,7 @@ Ideally, @code{xenon} is run every time code is committed. Through command
1077line options, various thresholds can be set for the complexity of code. It 1077line options, various thresholds can be set for the complexity of code. It
1078will fail (i.e., it will exit with a non-zero exit code) when any of these 1078will fail (i.e., it will exit with a non-zero exit code) when any of these
1079requirements is not met.") 1079requirements is not met.")
1080 (properties '((lint-hidden-cpe-vendors . ("vmware"))))
1080 (license license:expat))) 1081 (license license:expat)))
1081 1082
1082(define-public python-xenon 1083(define-public python-xenon