summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-04-23 22:02:19 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-23 23:12:23 +0100
commitac7e4d826eda13dfce1a42a3ef2894459ff2c1e4 (patch)
treed712b7b37cc35fc7979fac0a38b97dd8cf6244d0 /gnu/packages/openstack.scm
parent0bb526a57373b82b8b121fe34cb614fe24c8191e (diff)
gnu: python-bandit: Move to python-check.
* gnu/packages/openstack.scm (python-bandit): Move from here ... * gnu/packages/python-check.scm: ... to here. Change-Id: I8e10caee78a1d5922626f30d48cfe2bbe6b2ab2e
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm47
1 files changed, 0 insertions, 47 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index e1d93604dd2..9c5c2d40944 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -52,53 +52,6 @@
#:use-module (guix packages)
#:use-module (srfi srfi-1))
-(define-public python-bandit
- (package
- (name "python-bandit")
- (version "1.8.3")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "bandit" version))
- (sha256
- (base32 "0fhr0rsvh44ix31dwxjw8aj0wklj95368djwk0i98c2dcpmpp17m"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:test-flags
- ;; Two tets fail.
- #~(list "--exclude-regex" "test_no_arguments|test_help_arg")
- #:phases
- #~(modify-phases %standard-phases
- ;; TODO: Implement in pypproject-build-system's test-backends.
- (replace 'check
- (lambda* (#:key tests? test-flags #:allow-other-keys)
- (when tests?
- (apply invoke "stestr" "run" test-flags)))))))
- (native-inputs
- (list python-beautifulsoup4
- python-fixtures
- python-setuptools
- python-stestr
- python-testscenarios
- python-testtools
- python-wheel))
- (propagated-inputs
- (list python-gitpython
- python-jschema-to-python
- python-pyyaml
- python-rich
- python-sarif-om
- python-stevedore))
- (home-page "https://github.com/PyCQA/bandit")
- (synopsis "Security oriented static analyser for python code")
- (description
- "Bandit is a tool designed to find common security issues in Python code.
-To do this Bandit processes each file, builds an AST from it, and runs
-appropriate plugins against the AST nodes. Once Bandit has finished scanning
-all the files it generates a report.")
- (license asl2.0)))
-
(define-public python-cliff
(package
(name "python-cliff")