~ruther/guix-local

76ba800cf54f20cabcd2bc633fea37a72cf92d6c — Sharlatan Hellseher 7 months ago b6311a5
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
1 files changed, 5 insertions(+), 17 deletions(-)

M gnu/packages/python-check.scm
M gnu/packages/python-check.scm => gnu/packages/python-check.scm +5 -17
@@ 303,33 303,21 @@ Avocado machine readable outputs this one is streamlined (per test results).
(define-public python-bandit
  (package
    (name "python-bandit")
    (version "1.8.3")
    (version "1.8.6")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "bandit" version))
       (sha256
        (base32 "0fhr0rsvh44ix31dwxjw8aj0wklj95368djwk0i98c2dcpmpp17m"))))
        (base32 "0sz5lkg9anqz6ir157xr8ng9ymgj37ymbplkhl3w4qb9zhjrrznv"))))
    (build-system pyproject-build-system)
    (arguments
     (list
      #:test-flags
      ;; XXX: Two tests fail.
      #~(list "--exclude-regex" "test_no_arguments|test_help_arg")))
     (list #:tests? #f))         ;tests require complex setup and networking
    (native-inputs
     (list python-beautifulsoup4
           python-fixtures
           python-setuptools
           python-stestr
           python-testscenarios
           python-testtools
           python-wheel))
     (list python-setuptools))
    (propagated-inputs
     (list python-gitpython
           python-jschema-to-python
           python-pyyaml
     (list python-pyyaml
           python-rich
           python-sarif-om
           python-stevedore))
    (home-page "https://github.com/PyCQA/bandit")
    (synopsis "Security oriented static analyser for python code")