mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
30 lines
605 B
Nix
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 ];
|
||
|
};
|
||
|
}
|