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

26 lines
617 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2019-04-30 21:14:17 +03:00
python3Packages.buildPythonApplication rec {
2019-04-30 21:14:17 +03:00
pname = "ssh-audit";
2020-10-29 13:22:53 +03:00
version = "2.3.1";
2019-04-30 21:14:17 +03:00
src = fetchFromGitHub {
owner = "jtesta";
2019-04-30 21:14:17 +03:00
repo = pname;
rev = "v${version}";
2020-10-29 13:22:53 +03:00
sha256 = "1h739r5nv5zkmjyyjwkw8r6d4avddjjxsamc5rffwfxi1kjavpxm";
2019-04-30 21:14:17 +03:00
};
checkInputs = with python3Packages; [
pytestCheckHook
];
meta = with lib; {
2019-04-30 21:14:17 +03:00
description = "Tool for ssh server auditing";
homepage = "https://github.com/jtesta/ssh-audit";
license = licenses.mit;
2020-10-26 11:04:52 +03:00
platforms = platforms.all;
maintainers = with maintainers; [ tv SuperSandro2000 ];
2019-04-30 21:14:17 +03:00
};
}