about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-02-20 16:55:32 -0500
committerGitHub <noreply@github.com>2024-02-20 16:55:32 -0500
commitf53d2f325b0f595b0e05cee27a7e50c746e315fe (patch)
treec6529661fcd596a3073f5528cf45507619dbffc8 /pkgs
parentc592a84f44c0457bf7b895844b045ef06f886a75 (diff)
parent65ac553a62323237c709d7b10ed853b8885741d5 (diff)
downloadnixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar.gz
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar.bz2
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar.lz
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar.xz
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.tar.zst
nixlib-f53d2f325b0f595b0e05cee27a7e50c746e315fe.zip
Merge pull request #290258 from fabaff/ldeep-bump
 ldeep: 1.0.51 -> 1.0.52 
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/ldeep/default.nix15
1 files changed, 12 insertions, 3 deletions
diff --git a/pkgs/tools/security/ldeep/default.nix b/pkgs/tools/security/ldeep/default.nix
index 623acf50f3b8..6e44829f7ee9 100644
--- a/pkgs/tools/security/ldeep/default.nix
+++ b/pkgs/tools/security/ldeep/default.nix
@@ -5,25 +5,34 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "ldeep";
-  version = "1.0.51";
-  format = "setuptools";
+  version = "1.0.52";
+  pyproject = true;
 
   src = fetchFromGitHub {
     owner = "franc-pentest";
     repo = "ldeep";
     rev = "refs/tags/${version}";
-    hash = "sha256-UbZotbq97ehVj8dF0vXM2Z61IG1H+21xk14DXKmWirA=";
+    hash = "sha256-I51vz3zF1J3223hcO3cdfsNBfpq/UolDxUEXyqx3dLI=";
   };
 
+  pythonRelaxDeps = [
+    "cryptography"
+  ];
+
   nativeBuildInputs = with python3.pkgs; [
     cython
+    pythonRelaxDepsHook
+    setuptools
   ];
 
   propagatedBuildInputs = with python3.pkgs; [
     commandparse
     cryptography
     dnspython
+    gssapi
     ldap3
+    oscrypto
+    pycryptodome
     pycryptodomex
     six
     termcolor