about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorocfox <i@ocfox.me>2024-02-18 11:54:13 +0800
committerocfox <i@ocfox.me>2024-02-19 22:36:02 +0800
commit90abd5e27f7db156974e6cc536f339a3e3e558fd (patch)
treef6481fbafb1e56e611a32724ba1413de679c9141 /pkgs/tools/security
parent91a794c03952f9d51aa9352510287903168a2190 (diff)
das: 0.3.8 -> 1.0.3
Diff: https://github.com/snovvcrash/DivideAndScan/compare/v0.3.8...v1.0.3

Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/das/default.nix51
1 files changed, 0 insertions, 51 deletions
diff --git a/pkgs/tools/security/das/default.nix b/pkgs/tools/security/das/default.nix
deleted file mode 100644
index 2f7cd2fa98f7b..0000000000000
--- a/pkgs/tools/security/das/default.nix
+++ /dev/null
@@ -1,51 +0,0 @@
-{ lib
-, python3
-, fetchFromGitHub
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "das";
-  version = "0.3.8";
-  format = "pyproject";
-
-  src = fetchFromGitHub {
-    owner = "snovvcrash";
-    repo = "DivideAndScan";
-    rev = "refs/tags/v${version}";
-    hash = "sha256-a9gnEBTvZshw42M/GrpCgjZh6FOzL45aZqGRyeHO0ec=";
-  };
-
-  postPatch = ''
-    substituteInPlace pyproject.toml \
-      --replace 'networkx = "^2.8.4"' 'networkx = "*"' \
-      --replace 'pandas = "^1.4.2"' 'pandas = "*"'
-  '';
-
-  nativeBuildInputs = with python3.pkgs; [
-    poetry-core
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    dash
-    defusedxml
-    dnspython
-    netaddr
-    networkx
-    pandas
-    plotly
-    python-nmap
-    scipy
-    tinydb
-  ];
-
-  pythonImportsCheck = [
-    "das"
-  ];
-
-  meta = with lib; {
-    description = "Divide full port scan results and use it for targeted Nmap runs";
-    homepage = "https://github.com/snovvcrash/DivideAndScan";
-    license = licenses.bsd2;
-    maintainers = with maintainers; [ fab ];
-  };
-}