at 23.05-pre 25 lines 617 B view raw
1{ lib, fetchFromGitHub, python3Packages }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "ssh-audit"; 5 version = "2.5.0"; 6 7 src = fetchFromGitHub { 8 owner = "jtesta"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "0ks1zr0ksma285sm2dyy0nsbrkpssdk4mdzc3srr4mcyd6v927jd"; 12 }; 13 14 checkInputs = 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}