about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/websploit/default.nix
blob: b8db06427f8638f6b801fd167ef82b240b7321db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, buildPythonApplication, fetchFromGitHub
, requests, scapy }:

buildPythonApplication rec {
  pname = "websploit";
  version = "4.0.4";

  src = fetchFromGitHub {
    owner = "f4rih";
    repo = pname;
    rev = version;
    sha256 = "LpDfJmH2FbL37Fk86CAC/bxFqM035DBN6c6FPfGpaIw=";
  };

  propagatedBuildInputs = [
    requests
    scapy
  ];

  # Project has no tests
  doCheck = false;

  meta = with lib; {
    description = "A high level MITM framework";
    homepage = "https://github.com/f4rih/websploit";
    license = licenses.mit;
    maintainers = with maintainers; [ emilytrau ];
  };
}