python3Packages.certihound: init at 0.3.0

This commit is contained in:
Letgamer
2026-04-12 13:42:59 +02:00
parent 5d428d54b5
commit 2c1c0baf5b
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchPypi,
ldap3,
impacket,
cryptography,
pydantic,
click,
rich,
}:
buildPythonPackage rec {
pname = "certihound";
version = "0.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-ERJ5fbYikhKLwchSIBe5s4KF/1HsXZ1O00QnYXAe+ps=";
};
dependencies = [
ldap3
impacket
cryptography
pydantic
click
rich
];
# Tests are stripped in pypi
doCheck = false;
pythonImportsCheck = [ "certihound" ];
meta = {
homepage = "https://github.com/0x0Trace/Certihound";
description = "Active Directory Certificate Services (ADCS) enumeration library with BloodHound CE v6 export support";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ letgamer ];
};
}
+2
View File
@@ -2609,6 +2609,8 @@ self: super: with self; {
certifi = callPackage ../development/python-modules/certifi { };
certihound = callPackage ../development/python-modules/certihound { };
certipy = callPackage ../development/python-modules/certipy { };
certipy-ad = callPackage ../development/python-modules/certipy-ad { };