e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
30 lines
647 B
Nix
30 lines
647 B
Nix
{ lib
|
|
, fetchPypi
|
|
, python3
|
|
}:
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "bloodhound-py";
|
|
version = "1.7.1";
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "bloodhound";
|
|
hash = "sha256-BryByUo9FCSrrJgXoXoVPBjpmh32I0xRoeKBsYj8nSE=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
impacket
|
|
ldap3
|
|
dnspython
|
|
];
|
|
|
|
# the package has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python based ingestor for BloodHound, based on Impacket.";
|
|
homepage = "https://github.com/dirkjanm/BloodHound.py";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ exploitoverload ];
|
|
};
|
|
}
|