mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
8d41c90145
Diff: https://github.com/franc-pentest/ldeep/compare/refs/tags/1.0.75...1.0.76 Changelog: https://github.com/franc-pentest/ldeep/releases/tag/1.0.76
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "ldeep";
|
|
version = "1.0.76";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "franc-pentest";
|
|
repo = "ldeep";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-NVUU1VFUojeQYBHNpOqDCDjuzSUw8j5+uFxaQL1pA2U=";
|
|
};
|
|
|
|
pythonRelaxDeps = [
|
|
"cryptography"
|
|
];
|
|
|
|
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/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "ldeep";
|
|
};
|
|
}
|