depot/third_party/nixpkgs/pkgs/tools/security/kerbrute/default.nix
Default email d9e13ed064 Project import generated by Copybara.
GitOrigin-RevId: a930f7da84786807bb105df40e76b541604c3e72
2021-09-22 23:38:15 +08:00

29 lines
656 B
Nix

{ lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "kerbrute";
version = "0.0.2";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "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";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ applePrincess ];
};
}