mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
f3ea0054fc
Diff: https://github.com/franc-pentest/ldeep/compare/refs/tags/1.0.41...1.0.42 Changelog: https://github.com/franc-pentest/ldeep/releases/tag/1.0.42
48 lines
941 B
Nix
48 lines
941 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "ldeep";
|
|
version = "1.0.42";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "franc-pentest";
|
|
repo = "ldeep";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-kXXZU4/nWUKAFJbcp9PFyPUxd+fRXJb6JbS/fybHh3g=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
cython
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
commandparse
|
|
cryptography
|
|
dnspython
|
|
ldap3
|
|
pycryptodomex
|
|
six
|
|
termcolor
|
|
tqdm
|
|
];
|
|
|
|
# no tests are present
|
|
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 = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|