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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
617 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-08-27 13:38:17 +00:00
version = "2.5.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-08-27 13:38:17 +00:00
sha256 = "0ks1zr0ksma285sm2dyy0nsbrkpssdk4mdzc3srr4mcyd6v927jd";
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
};
}