(define-module (gnu packages ssh-audit) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system python) #:use-module (guix licenses)) (define-public ssh-audit (package (name "ssh-audit") (version "3.3.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/jtesta/ssh-audit/archive/refs/tags/v" version ".tar.gz")) (sha256 (base32 "0fz6qlvlgfi2cc45qvki0bh6bxqwn36k4xwanxv5ar8y5kzwjcz5")))) (build-system python-build-system) (arguments (list #:tests? #f)) (synopsis "ssh auditing tool") (description "ssh-audit is a tool for ssh server & client configuration auditing") (home-page "https://github.com/jtesta/ssh-audit") (license expat))) ssh-audit