1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/security/ssh-audit/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2019-04-30 19:14:17 +01:00
python3Packages.buildPythonApplication rec {
2019-04-30 19:14:17 +01:00
pname = "ssh-audit";
2020-09-29 11:52:02 +01:00
version = "2.3.0";
2019-04-30 19:14:17 +01:00
src = fetchFromGitHub {
owner = "jtesta";
2019-04-30 19:14:17 +01:00
repo = pname;
rev = "v${version}";
2020-09-29 11:52:02 +01:00
sha256 = "1k5nv2cdnzd3j2p729vjw6ya0gwwkxhqijs2b7p68wvp0n3y3m77";
2019-04-30 19:14:17 +01:00
};
postPatch = ''
2020-09-29 11:52:02 +01:00
cp ./README.md packages/sshaudit/
cp ./ssh-audit.py packages/sshaudit/sshaudit.py
mv packages/* .
ls -lah
2019-04-30 19:14:17 +01:00
'';
checkInputs = with python3Packages; [
pytestCheckHook
];
disabledTests = [
"test_resolve_error"
"test_resolve_hostname_without_records"
"test_resolve_ipv4"
"test_resolve_ipv6"
"test_resolve_ipv46_both"
"test_resolve_ipv46_order"
"test_invalid_host"
"test_invalid_port"
"test_not_connected_socket"
"test_ssh2_server_simple"
];
2019-04-30 19:14:17 +01:00
meta = with lib; {
2019-04-30 19:14:17 +01: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 19:14:17 +01:00
};
}