Commit 7dfe3875 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

baboossh: init at 1.2.0

parent a3b29352
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };