about summary refs log tree commit diff
path: root/pkgs/tools/security/theharvester
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-18 07:49:46 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-18 07:49:46 +0100
commit0bd552d791e0be7fc7aa33e6228a4b76391cb71d (patch)
tree97c963df722a5e9dead096ae7d36bc5bd74812a6 /pkgs/tools/security/theharvester
parent7358662028a82db4715868fdd3610383f84ea6e7 (diff)
theHarvester: 3.1 -> 3.2.2
Diffstat (limited to 'pkgs/tools/security/theharvester')
-rw-r--r--pkgs/tools/security/theharvester/default.nix33
1 files changed, 27 insertions, 6 deletions
diff --git a/pkgs/tools/security/theharvester/default.nix b/pkgs/tools/security/theharvester/default.nix
index 4153ddafbf480..7a03649859e41 100644
--- a/pkgs/tools/security/theharvester/default.nix
+++ b/pkgs/tools/security/theharvester/default.nix
@@ -1,8 +1,11 @@
-{ lib, fetchFromGitHub, python3 }:
+{ lib
+, fetchFromGitHub
+, python3
+}:
 
 python3.pkgs.buildPythonApplication rec {
   pname = "theHarvester";
-  version = "3.1";
+  version = "3.2.2";
 
   src = fetchFromGitHub {
     owner = "laramies";
@@ -11,9 +14,27 @@ python3.pkgs.buildPythonApplication rec {
     sha256 = "0lxzxfa9wbzim50d2jmd27i57szd0grm1dfayhnym86jn01qpvn3";
   };
 
-  propagatedBuildInputs = with python3.pkgs; [ 
-    aiodns beautifulsoup4 dns grequests netaddr
-    plotly pyyaml requests retrying shodan texttable
+  propagatedBuildInputs = with python3.pkgs; [
+    aiodns
+    aiohttp
+    aiomultiprocess
+    aiosqlite
+    beautifulsoup4
+    censys
+    certifi
+    dns
+    gevent
+    grequests
+    lxml
+    netaddr
+    plotly
+    pyppeteer
+    pyyaml
+    requests
+    retrying
+    shodan
+    texttable
+    uvloop
   ];
 
   checkInputs = [ python3.pkgs.pytest ];
@@ -31,6 +52,6 @@ python3.pkgs.buildPythonApplication rec {
     '';
     homepage = "https://github.com/laramies/theHarvester";
     maintainers = with maintainers; [ c0bw3b treemo ];
-    license = licenses.gpl2;
+    license = licenses.gpl2Only;
   };
 }