about summary refs log tree commit diff
path: root/pkgs/tools/security/snallygaster
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-11-18 04:55:59 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-11-20 02:06:30 +0100
commit272dcd8f9a4072abe51ba4210ae64997e8290fc7 (patch)
tree54af217f3e5217487890e12539d719cc02c6dc54 /pkgs/tools/security/snallygaster
parenta823dee9d9cdcbf9a3fd22a073e75a5bfb2b36eb (diff)
snallygaster: init at 0.0.9
Diffstat (limited to 'pkgs/tools/security/snallygaster')
-rw-r--r--pkgs/tools/security/snallygaster/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/tools/security/snallygaster/default.nix b/pkgs/tools/security/snallygaster/default.nix
new file mode 100644
index 0000000000000..36ea37edbb9ae
--- /dev/null
+++ b/pkgs/tools/security/snallygaster/default.nix
@@ -0,0 +1,38 @@
+{ lib
+, python3Packages
+, fetchFromGitHub
+}:
+
+python3Packages.buildPythonApplication rec {
+  pname = "snallygaster";
+  version = "0.0.9";
+
+  src = fetchFromGitHub {
+    owner = "hannob";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1gan5asgrxdgfi9lalhxzj3vs7nkazi8nqia36bpz1qb5fz7jrx3";
+  };
+
+  propagatedBuildInputs = with python3Packages; [
+    urllib3
+    beautifulsoup4
+    dnspython
+  ];
+
+  checkInputs = with python3Packages; [
+    pytestCheckHook
+  ];
+
+  pytestFlagsArray = [
+    # we are not interested in linting the project
+    "--ignore=tests/test_codingstyle.py"
+  ];
+
+  meta = with lib; {
+    description = "Tool to scan for secret files on HTTP servers";
+    homepage = "https://github.com/hannob/snallygaster";
+    license = licenses.cc0;
+    maintainers = with maintainers; [ hexa ];
+  };
+}