Loading pkgs/development/python-modules/certihound/default.nix 0 → 100644 +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 ]; }; }) pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/certihound/default.nix 0 → 100644 +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 ]; }; })
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading