nixpkgs/pkgs/tools/security/ssh-audit/default.nix

26 lines
616 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2019-04-30 18:14:17 +00:00
python3Packages.buildPythonApplication rec {
2019-04-30 18:14:17 +00:00
pname = "ssh-audit";
2021-02-24 11:15:36 +00:00
version = "2.4.0";
2019-04-30 18:14:17 +00:00
src = fetchFromGitHub {
owner = "jtesta";
2019-04-30 18:14:17 +00:00
repo = pname;
rev = "v${version}";
2021-02-24 11:15:36 +00:00
sha256 = "sha256-Xq1q/i43vZAv8BayVOdKuZ3+mJcQQ0x4Kc3WlASE6m8=";
2019-04-30 18:14:17 +00:00
};
checkInputs = with python3Packages; [
pytestCheckHook
];
meta = with lib; {
2019-04-30 18:14:17 +00:00
description = "Tool for ssh server auditing";
homepage = "https://github.com/jtesta/ssh-audit";
license = licenses.mit;
2020-10-26 08:04:52 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ tv SuperSandro2000 ];
2019-04-30 18:14:17 +00:00
};
}