Merge pull request #254053 from fabaff/ldeep-bump

ldeep: 1.0.11 -> 1.0.34
This commit is contained in:
Fabian Affolter 2023-09-09 15:02:27 +02:00 committed by GitHub
commit c99ddb6874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 15 deletions

View File

@ -1,37 +1,42 @@
{ lib
, buildPythonApplication
, fetchPypi
, commandparse
, dnspython
, ldap3
, termcolor
, tqdm
, fetchFromGitHub
, python3
}:
buildPythonApplication rec {
python3.pkgs.buildPythonApplication rec {
pname = "ldeep";
version = "1.0.11";
version = "1.0.34";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-MYVC8fxLW85n8uZVMhb2Zml1lQ8vW9gw/eRLcmemQx4=";
src = fetchFromGitHub {
owner = "franc-pentest";
repo = "ldeep";
rev = "refs/tags/${version}";
hash = "sha256-Gskbxfqp2HqI6rCEiuT0lgHQtD0rZjtLgH3idEkfmjc=";
};
propagatedBuildInputs = [
propagatedBuildInputs = with python3.pkgs; [
commandparse
cryptography
dnspython
ldap3
pycryptodomex
six
termcolor
tqdm
];
# no tests are present
doCheck = false;
pythonImportsCheck = [ "ldeep" ];
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 ];
};

View File

@ -10315,7 +10315,7 @@ with pkgs;
ldapvi = callPackage ../tools/misc/ldapvi { };
ldeep = python3Packages.callPackage ../tools/security/ldeep { };
ldeep = callPackage ../tools/security/ldeep { };
ldns = callPackage ../development/libraries/ldns { };