Unverified Commit 908bdc03 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.certihound: init at 0.3.0 (#509243)

parents aef7f843 b887779f
Loading
Loading
Loading
Loading
+46 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };