mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
42 lines
878 B
Nix
42 lines
878 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "baboossh";
|
|
version = "1.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cybiere";
|
|
repo = "baboossh";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-E/a6dL6BpQ6D8v010d8/qav/fkxpCYNvSvoPAZsm0Hk=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
cmd2
|
|
paramiko
|
|
python-libnmap
|
|
tabulate
|
|
];
|
|
|
|
# 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 ];
|
|
mainProgram = "baboossh";
|
|
};
|
|
}
|