depot/third_party/nixpkgs/pkgs/tools/security/kerbrute/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

30 lines
682 B
Nix

{ lib, python3, fetchPypi }:
python3.pkgs.buildPythonApplication rec {
pname = "kerbrute";
version = "0.0.2";
src = fetchPypi {
inherit pname version;
hash = "sha256-ok/yttRSkCaEdV4aM2670qERjgDBll6Oi3L5TV5YEEA=";
};
# This package does not have any tests
doCheck = false;
propagatedBuildInputs = with python3.pkgs; [
impacket
];
installChechPhase = ''
$out/bin/kerbrute --version
'';
meta = {
homepage = "https://github.com/TarlogicSecurity/kerbrute";
description = "Kerberos bruteforce utility";
mainProgram = "kerbrute";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ applePrincess ];
};
}