bloodhound-py: init at 1.6.1

This commit is contained in:
exploitoverload 2023-07-06 10:17:53 +02:00
parent 2b89bab306
commit adb14254a2
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -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 { };