baboossh: init at 1.2.0
This commit is contained in:
parent
a3b293523b
commit
7dfe387529
2 changed files with 41 additions and 0 deletions
39
pkgs/tools/security/baboossh/default.nix
Normal file
39
pkgs/tools/security/baboossh/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3825,6 +3825,8 @@ with pkgs;
|
||||||
|
|
||||||
babelfish = callPackage ../shells/fish/babelfish.nix { };
|
babelfish = callPackage ../shells/fish/babelfish.nix { };
|
||||||
|
|
||||||
|
baboossh = callPackage ../tools/security/baboossh { };
|
||||||
|
|
||||||
badchars = python3Packages.callPackage ../tools/security/badchars { };
|
badchars = python3Packages.callPackage ../tools/security/badchars { };
|
||||||
|
|
||||||
badvpn = callPackage ../tools/networking/badvpn { };
|
badvpn = callPackage ../tools/networking/badvpn { };
|
||||||
|
|
Loading…
Reference in a new issue