Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "ldeep";
|
|
version = "1.0.89";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "franc-pentest";
|
|
repo = "ldeep";
|
|
tag = version;
|
|
hash = "sha256-aod+0wd4Ek8mTiP4H5C5vUJ+94THMrFGDGVzWEH3G+U=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"termcolor"
|
|
"cryptography"
|
|
"ldap3-bleeding-edge"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [ pdm-backend ];
|
|
|
|
nativeBuildInputs = with python3.pkgs; [ cython ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
commandparse
|
|
cryptography
|
|
dnspython
|
|
gssapi
|
|
ldap3-bleeding-edge
|
|
oscrypto
|
|
pycryptodome
|
|
pycryptodomex
|
|
six
|
|
termcolor
|
|
tqdm
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "ldeep" ];
|
|
|
|
meta = with lib; {
|
|
description = "In-depth LDAP enumeration utility";
|
|
homepage = "https://github.com/franc-pentest/ldeep";
|
|
changelog = "https://github.com/franc-pentest/ldeep/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "ldeep";
|
|
};
|
|
}
|