Commit adb14254 authored by exploitoverload's avatar exploitoverload
Browse files

bloodhound-py: init at 1.6.1

parent 2b89bab3
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -348,6 +348,8 @@ with pkgs;
  blst = callPackage ../development/libraries/blst { };
  bloodhound-py = callPackage ../tools/security/bloodhound-py { };
  bodyclose = callPackage ../development/tools/bodyclose { };
  bootstrap-studio = callPackage ../development/web/bootstrap-studio { };