guix-glicid/glicid/packages/python.scm

20 lines
973 B
Scheme
Raw Normal View History

(define-module (glicid packages python)
2023-06-06 09:21:54 +02:00
#:use-module (guix download)
#:use-module (guix packages)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system python))
2022-12-19 16:10:21 +01:00
(define-public python-ssh-audit
2023-06-06 09:21:54 +02:00
(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)))