nixpkgs/pkgs/tools/security/websploit/default.nix
2022-08-02 23:53:26 +10:00

30 lines
605 B
Nix

{ 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 ];
};
}