biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / kerbrute / default.nix
blob626fe91a60c40d8f2b33bb4fb6342ef36b80a41b
1 { lib, python3, fetchPypi }:
3 python3.pkgs.buildPythonApplication rec {
4   pname = "kerbrute";
5   version = "0.0.2";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-ok/yttRSkCaEdV4aM2670qERjgDBll6Oi3L5TV5YEEA=";
10   };
12   # This package does not have any tests
13   doCheck = false;
15   propagatedBuildInputs = with python3.pkgs; [
16     impacket
17   ];
19   installChechPhase = ''
20     $out/bin/kerbrute --version
21   '';
23   meta = {
24     homepage = "https://github.com/TarlogicSecurity/kerbrute";
25     description = "Kerberos bruteforce utility";
26     mainProgram = "kerbrute";
27     license = lib.licenses.gpl3Only;
28     maintainers = with lib.maintainers; [ applePrincess ];
29   };