mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
python-ssh-audit
This commit is contained in:
parent
91112edb2d
commit
72b2786a2a
2 changed files with 18 additions and 21 deletions
|
@ -1,10 +1,8 @@
|
|||
(define-module (glicid packages networking)
|
||||
#:use-module ((gnu packages networking)
|
||||
#:prefix gnu:)
|
||||
#:use-module ((gnu packages networking) #:prefix gnu:)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix download)
|
||||
#:use-module ((guix licenses)
|
||||
#:prefix license:)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages))
|
||||
|
||||
(define-public libecap
|
||||
|
|
|
@ -1,20 +1,19 @@
|
|||
(define-module (glicid packages python)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix build-system 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.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)))
|
||||
(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)))
|
||||
|
|
Loading…
Add table
Reference in a new issue