baboossh: init at 1.2.0

This commit is contained in:
Fabian Affolter 2023-05-20 22:29:39 +02:00
parent a3b293523b
commit 7dfe387529
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,39 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "baboossh";
version = "1.2.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "cybiere";
repo = "baboossh";
rev = "refs/tags/v${version}";
hash = "sha256-dorIqnJuAS/y9W6gyt65QjwGwx4bJHKLmdqRPzY25yA=";
};
propagatedBuildInputs = with python3.pkgs; [
cmd2
tabulate
paramiko
python-libnmap
];
# No tests available
doCheck = false;
pythonImportsCheck = [
"baboossh"
];
meta = with lib; {
description = "Tool to do SSH spreading";
homepage = "https://github.com/cybiere/baboossh";
changelog = "https://github.com/cybiere/baboossh/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -3825,6 +3825,8 @@ with pkgs;
babelfish = callPackage ../shells/fish/babelfish.nix { };
baboossh = callPackage ../tools/security/baboossh { };
badchars = python3Packages.callPackage ../tools/security/badchars { };
badvpn = callPackage ../tools/networking/badvpn { };