mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
19 lines
973 B
Scheme
19 lines
973 B
Scheme
(define-module (glicid packages python)
|
|
#:use-module (guix download)
|
|
#:use-module (guix packages)
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
#:use-module (guix build-system python))
|
|
|
|
(define-public python-ssh-audit
|
|
(package
|
|
(name "python-ssh-audit")
|
|
(version "2.9.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (pypi-uri "ssh-audit" version))
|
|
(sha256 (base32 "0gc9xf3cpl1rwrm4pn0v88g66198n0gcivsyry5vchpsl6mbls3y"))))
|
|
(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 license:expat)))
|