about summary refs log tree commit diff
path: root/pkgs/tools/security/bloodhound-py/default.nix
blob: 197be429bee90f786107e0eee53e30d4f9afb6d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, fetchPypi
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "bloodhound-py";
  version = "1.6.1";

  src = fetchPypi {
    inherit version;
    pname = "bloodhound";
    hash = "sha256-SRP74I5euKJErnSkm6OSdAwznv/ZQeEtNG4XofnIEec=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    impacket
    ldap3
    dnspython
  ];

  # the package has no tests
  doCheck = false;

  meta = with lib; {
    description = "Ingestor for BloodHound";
    homepage = "https://github.com/fox-it/BloodHound.py";
    license = licenses.mit;
    maintainers = with maintainers; [ exploitoverload ];
  };
}