mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
baboossh: init at 1.2.0
This commit is contained in:
parent
a3b293523b
commit
7dfe387529
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 { };
|
||||
|
||||
baboossh = callPackage ../tools/security/baboossh { };
|
||||
|
||||
badchars = python3Packages.callPackage ../tools/security/badchars { };
|
||||
|
||||
badvpn = callPackage ../tools/networking/badvpn { };
|
||||
|
Loading…
Reference in New Issue
Block a user