about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-05-05 14:27:25 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-05-05 14:27:25 +0200
commit4c7f7f61a79f9a4b90634f28063e5858b7b2fffa (patch)
tree889c3c34514b1dcd235e5eefff67141985cd012e /pkgs/tools/security
parentcbe587c735b734405f56803e267820ee1559e6c1 (diff)
trueseeing: init at 2.1.4
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/trueseeing/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/pkgs/tools/security/trueseeing/default.nix b/pkgs/tools/security/trueseeing/default.nix
new file mode 100644
index 0000000000000..4aa9e1852aeed
--- /dev/null
+++ b/pkgs/tools/security/trueseeing/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, fetchFromGitHub
+, python3
+}:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "trueseeing";
+  version = "2.1.4";
+  format = "flit";
+
+  src = fetchFromGitHub {
+    owner = "alterakey";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-zc0AOv7OFmEPLl//eykbh538rM2j4kXBLHt5bgK1IRY=";
+  };
+
+  nativeBuildInputs = with python3.pkgs; [
+    flit-core
+  ];
+
+  propagatedBuildInputs = with python3.pkgs; [
+    attrs
+    ipython
+    jinja2
+    lxml
+    pypubsub
+    pyyaml
+  ];
+
+  # Project has no tests
+  doCheck = false;
+
+  pythonImportsCheck = [
+    "trueseeing"
+  ];
+
+  meta = with lib; {
+    description = "Non-decompiling Android vulnerability scanner";
+    homepage = "https://github.com/alterakey/trueseeing";
+    license = with licenses; [ gpl3Plus ];
+    maintainers = with maintainers; [ fab ];
+  };
+}