diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2023-12-16 23:14:56 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2023-12-16 23:14:56 -0500 |
commit | 17c3a3bfff150a42c904233fa39818d73c9f68f3 (patch) | |
tree | a7614b7cd9a7106ea59f5ac1caad0c2c496b3a45 /gnu/packages/check.scm | |
parent | f5493629e2650c0d30caf0f01f76b2383f78b9de (diff) | |
parent | fe86819d8bde674766659c22b215d3a689a8026e (diff) |
Merge branch 'master' into mesa-updates
Change-Id: I0c6e2410c51335c68634738be030e374f5b492e9
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 1f5b886977..5181d3a164 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2358,14 +2358,14 @@ programs, something like CSmith, a random generator of C programs.") (define-public python-lit (package (name "python-lit") - (version "16.0.0") + (version "17.0.6") (source (origin (method url-fetch) (uri (pypi-uri "lit" version)) (sha256 (base32 - "04dyv8b2nbdbn61zdgm042a21dwidyapn9zbinlf879a29rc6jiw")))) + "06z3p85gsy5hw3rbk0ym8aig9mvry1327gz7dfjhjigwandszafz")))) (build-system python-build-system) (arguments `(#:phases @@ -2374,8 +2374,8 @@ programs, something like CSmith, a random generator of C programs.") (lambda* (#:key tests? #:allow-other-keys) (when tests? (invoke "python" "lit.py" "tests"))))))) - (native-inputs - (list llvm-14)) + ;; This can be built with any version of llvm. + (native-inputs (list llvm)) (home-page "https://llvm.org/") (synopsis "LLVM Software Testing Tool") (description "@code{lit} is a portable tool for executing LLVM and Clang @@ -2721,7 +2721,7 @@ possible to write plugins to add your own checks.") (base32 "16a1ac5n7k7sx15cnk03gw3fmslab3a7m74dc45rgpldgiff3577")))) (build-system python-build-system) - (propagated-inputs (list python-pylint)) + (propagated-inputs (list python-tomli python-pylint)) (home-page "https://github.com/johnnoone/setuptools-pylint") (synopsis "Run pylint with @command{python setup.py lint}") (description "This package expose pylint as a lint command into |