summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorDaniel Ziltener <dziltener@lyrion.ch>2025-04-10 15:03:28 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-04-23 23:12:22 +0100
commit721aa8d2a7fce10f629315be4342b546187ab9a7 (patch)
tree92f2b72f4978baa89949659eca69bafe2a34c404 /gnu/packages/openstack.scm
parent3f61193716c383783192ad77e870c4c57d7901d5 (diff)
gnu: python-bandit: Update to 1.8.3.
* gnu/packages/openstack.scm (python-bandit): Update to 1.8.3. [build-system]: Switch to pyproject. [native-inputs]: Remove python-pbr; add python-beautifulsoup4, python-setuptools, and python-wheel. [propagated-inputs]: Remove python-gitpython and python-six; add python-rich. Change-Id: I16880d5fb5688c103b2e176a0ffc78ff420c7e19 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm15
1 files changed, 7 insertions, 8 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 1482ded769a..6afef79409d 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -55,23 +55,22 @@
(define-public python-bandit
(package
(name "python-bandit")
- (version "1.7.4")
+ (version "1.8.3")
(source
(origin
(method url-fetch)
(uri (pypi-uri "bandit" version))
(sha256
- (base32
- "1lkvf5ffdqa9504mm5fd9vvq0q5wdyqbkm32i4rswys1fg2shqrd"))))
- (build-system python-build-system)
+ (base32 "0fhr0rsvh44ix31dwxjw8aj0wklj95368djwk0i98c2dcpmpp17m"))))
+ (build-system pyproject-build-system)
(arguments
;; The tests are disabled to avoid a circular dependency with
;; python-stestr.
`(#:tests? #f))
- (propagated-inputs
- (list python-gitpython python-pyyaml python-six python-stevedore))
- (native-inputs
- (list python-pbr))
+ (propagated-inputs (list python-pyyaml python-rich python-stevedore))
+ (native-inputs (list python-beautifulsoup4
+ python-setuptools
+ python-wheel))
(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