2022-07-06 14:13:26 +02:00
|
|
|
(define-module (glicid packages python)
|
2023-01-02 11:18:12 +01:00
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix build-system python))
|
2022-07-06 14:13:26 +02:00
|
|
|
|
2022-12-19 16:10:21 +01:00
|
|
|
(define-public python-ssh-audit
|
2023-01-02 11:18:12 +01:00
|
|
|
(package
|
|
|
|
(name "python-ssh-audit")
|
|
|
|
(version "2.5.0")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "ssh-audit" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1dh5pwa0lhm1a5nvq5abwkqndivk37af5v3a4gj9g6bvpi8zg5rk"))))
|
|
|
|
(build-system python-build-system)
|
|
|
|
(home-page "https://github.com/jtesta/ssh-audit")
|
|
|
|
(synopsis "An SSH server & client configuration security auditing tool")
|
|
|
|
(description "An SSH server & client configuration security auditing tool")
|
|
|
|
(license #f)))
|