me
/
guix
Archived
1
0
Fork 0

gnu: python-bandit: Fix indentation.

* gnu/packages/openstack.scm (python-bandit): Fix indentation.
master
Maxim Cournoyer 2020-11-18 16:41:51 -05:00
parent a2ec24c65c
commit 2cafbf4147
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 9 additions and 10 deletions

View File

@ -59,19 +59,18 @@
;; python-stestr.
`(#:tests? #f))
(propagated-inputs
`(("python-gitpython" ,python-gitpython)
("python-pyyaml" ,python-pyyaml)
("python-six" ,python-six)
("python-stevedore" ,python-stevedore)))
`(("python-gitpython" ,python-gitpython)
("python-pyyaml" ,python-pyyaml)
("python-six" ,python-six)
("python-stevedore" ,python-stevedore)))
(native-inputs
`(("python-pbr" ,python-pbr)))
`(("python-pbr" ,python-pbr)))
(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.")
(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-debtcollector