summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:46:51 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:33 +0100
commit76ba800cf54f20cabcd2bc633fea37a72cf92d6c (patch)
tree7bc1987b7ab2b8962d2b63c0e7af502912ee6671 /gnu/packages
parentb6311a58eda3f30b28094d36117cc176f3cf6932 (diff)
gnu: python-bandit: Update to 1.8.6.
* gnu/packages/python-check.scm (python-bandit): Update to 1.8.6. [arguments] <tests?>: Disable for now. [propagated-inputs]: Remove python-gitpython, python-jschema-to-python, and python-sarif-om. [native-inputs]: Remove python-beautifulsoup4, python-fixtures, python-stestr, python-testscenarios, python-testtools, and python-wheel. Change-Id: Ib333f89b750e02bcaa22f599f8b3d4ba9164e6b9
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-check.scm22
1 files changed, 5 insertions, 17 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 7b6cff865d4..98e13286ebc 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -303,33 +303,21 @@ Avocado machine readable outputs this one is streamlined (per test results).
303(define-public python-bandit 303(define-public python-bandit
304 (package 304 (package
305 (name "python-bandit") 305 (name "python-bandit")
306 (version "1.8.3") 306 (version "1.8.6")
307 (source 307 (source
308 (origin 308 (origin
309 (method url-fetch) 309 (method url-fetch)
310 (uri (pypi-uri "bandit" version)) 310 (uri (pypi-uri "bandit" version))
311 (sha256 311 (sha256
312 (base32 "0fhr0rsvh44ix31dwxjw8aj0wklj95368djwk0i98c2dcpmpp17m")))) 312 (base32 "0sz5lkg9anqz6ir157xr8ng9ymgj37ymbplkhl3w4qb9zhjrrznv"))))
313 (build-system pyproject-build-system) 313 (build-system pyproject-build-system)
314 (arguments 314 (arguments
315 (list 315 (list #:tests? #f)) ;tests require complex setup and networking
316 #:test-flags
317 ;; XXX: Two tests fail.
318 #~(list "--exclude-regex" "test_no_arguments|test_help_arg")))
319 (native-inputs 316 (native-inputs
320 (list python-beautifulsoup4 317 (list python-setuptools))
321 python-fixtures
322 python-setuptools
323 python-stestr
324 python-testscenarios
325 python-testtools
326 python-wheel))
327 (propagated-inputs 318 (propagated-inputs
328 (list python-gitpython 319 (list python-pyyaml
329 python-jschema-to-python
330 python-pyyaml
331 python-rich 320 python-rich
332 python-sarif-om
333 python-stevedore)) 321 python-stevedore))
334 (home-page "https://github.com/PyCQA/bandit") 322 (home-page "https://github.com/PyCQA/bandit")
335 (synopsis "Security oriented static analyser for python code") 323 (synopsis "Security oriented static analyser for python code")