Files
Robert Schütz f638c15b89 python3Packages.bloodhound: rename from bloodhound-py
The project name (e.g. on PyPI) is bloodhound.
2026-08-04 12:29:22 -07:00

44 lines
845 B
Nix

{
lib,
buildPythonPackage,
dnspython,
fetchPypi,
impacket,
ldap3,
pycryptodome,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "bloodhound";
version = "1.9.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-n1+0jv73lrn2FMNhDVUPDJxgUATa2oRO4S5P7/xQyFw=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
dnspython
impacket
ldap3
pycryptodome
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "bloodhound" ];
meta = {
description = "Python based ingestor for BloodHound, based on Impacket";
mainProgram = "bloodhound-python";
homepage = "https://github.com/dirkjanm/BloodHound.py";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ exploitoverload ];
};
})