depot/third_party/nixpkgs/pkgs/tools/security/websploit/default.nix
Default email 13da32182d Project import generated by Copybara.
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
2022-08-21 15:32:41 +02:00

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