python3Packages.certihound: init at 0.3.0 (#509243)

This commit is contained in:
Fabian Affolter
2026-04-13 11:06:42 +00:00
committed by GitHub
2 changed files with 48 additions and 0 deletions
@@ -0,0 +1,46 @@
{
lib,
buildPythonPackage,
fetchPypi,
ldap3,
impacket,
cryptography,
pydantic,
click,
rich,
setuptools,
}:
buildPythonPackage (finalAttrs: {
pname = "certihound";
version = "0.3.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-ERJ5fbYikhKLwchSIBe5s4KF/1HsXZ1O00QnYXAe+ps=";
};
build-system = [ setuptools ];
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 { };