nixpkgs/pkgs/by-name/ld/ldeep/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
fetchFromGitHub,
python3,
2021-01-03 12:23:18 +00:00
}:
python3.pkgs.buildPythonApplication rec {
2021-01-03 12:23:18 +00:00
pname = "ldeep";
version = "1.0.76";
2024-02-20 19:59:04 +00:00
pyproject = true;
2021-01-03 12:23:18 +00:00
src = fetchFromGitHub {
owner = "franc-pentest";
repo = "ldeep";
rev = "refs/tags/${version}";
hash = "sha256-NVUU1VFUojeQYBHNpOqDCDjuzSUw8j5+uFxaQL1pA2U=";
2021-01-03 12:23:18 +00:00
};
2024-02-20 19:59:04 +00:00
pythonRelaxDeps = [
"cryptography"
];
build-system = with python3.pkgs; [ pdm-backend ];
nativeBuildInputs = with python3.pkgs; [ cython ];
2024-03-27 09:50:46 +00:00
dependencies = with python3.pkgs; [
2021-01-03 12:23:18 +00:00
commandparse
cryptography
2021-01-03 12:23:18 +00:00
dnspython
2024-02-20 19:59:04 +00:00
gssapi
ldap3-bleeding-edge
2024-02-20 19:59:04 +00:00
oscrypto
pycryptodome
pycryptodomex
six
2021-01-03 12:23:18 +00:00
termcolor
tqdm
];
2024-03-27 09:50:46 +00:00
# Project has no tests
2021-01-03 12:23:18 +00:00
doCheck = false;
pythonImportsCheck = [ "ldeep" ];
2021-01-03 12:23:18 +00:00
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;
2021-01-03 12:23:18 +00:00
maintainers = with maintainers; [ fab ];
2024-03-27 09:50:46 +00:00
mainProgram = "ldeep";
2021-01-03 12:23:18 +00:00
};
}