1{ lib, fetchFromGitHub, python3Packages }:
2
3python3Packages.buildPythonApplication rec {
4 pname = "ssh-audit";
5 version = "2.9.0";
6
7 src = fetchFromGitHub {
8 owner = "jtesta";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-WrED2cSoqR276iOma+pZq/Uu1vQWJmtJvsI73r8ivJA=";
12 };
13
14 nativeCheckInputs = with python3Packages; [
15 pytestCheckHook
16 ];
17
18 meta = with lib; {
19 description = "Tool for ssh server auditing";
20 homepage = "https://github.com/jtesta/ssh-audit";
21 license = licenses.mit;
22 platforms = platforms.all;
23 maintainers = with maintainers; [ tv SuperSandro2000 ];
24 };
25}