Merge pull request #107921 from fabaff/evillimiter
evillimiter: init at 1.5.0
This commit is contained in:
commit
4a8e102b4f
2 changed files with 55 additions and 0 deletions
53
pkgs/tools/networking/evillimiter/default.nix
Normal file
53
pkgs/tools/networking/evillimiter/default.nix
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
|
, fetchFromGitHub
|
||||||
|
, colorama
|
||||||
|
, iproute2
|
||||||
|
, iptables
|
||||||
|
, netaddr
|
||||||
|
, netifaces
|
||||||
|
, scapy
|
||||||
|
, terminaltables
|
||||||
|
, tqdm
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "evillimiter";
|
||||||
|
version = "1.5.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bitbrute";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1l0acd4a36wzz1gyc6mcw3zpagyi2mc425c6d4c6anq3jxwm3847";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
colorama
|
||||||
|
iproute2
|
||||||
|
iptables
|
||||||
|
netaddr
|
||||||
|
netifaces
|
||||||
|
scapy
|
||||||
|
terminaltables
|
||||||
|
tqdm
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests present
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "evillimiter.evillimiter" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool that monitors, analyzes and limits the bandwidth";
|
||||||
|
longDescription = ''
|
||||||
|
A tool to monitor, analyze and limit the bandwidth (upload/download) of
|
||||||
|
devices on your local network without physical or administrative access.
|
||||||
|
evillimiter employs ARP spoofing and traffic shaping to throttle the
|
||||||
|
bandwidth of hosts on the network.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/bitbrute/evillimiter";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3893,6 +3893,8 @@ in
|
||||||
|
|
||||||
eventstat = callPackage ../os-specific/linux/eventstat { };
|
eventstat = callPackage ../os-specific/linux/eventstat { };
|
||||||
|
|
||||||
|
evillimiter = python3Packages.callPackage ../tools/networking/evillimiter { };
|
||||||
|
|
||||||
evtest = callPackage ../applications/misc/evtest { };
|
evtest = callPackage ../applications/misc/evtest { };
|
||||||
|
|
||||||
evtest-qt = libsForQt5.callPackage ../applications/misc/evtest-qt { };
|
evtest-qt = libsForQt5.callPackage ../applications/misc/evtest-qt { };
|
||||||
|
|
Loading…
Reference in a new issue