Files
nixpkgs/pkgs/by-name/ev/evillimiter/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
iproute2,
iptables,
python3Packages,
}:
python3Packages.buildPythonApplication rec {
pname = "evillimiter";
version = "1.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "bitbrute";
repo = "evillimiter";
tag = "v${version}";
hash = "sha256-h6BReZcDW2UYaYYVQVgV0T91/+CsGuZf+J+boUhjCtA=";
};
build-system = with python3Packages; [ setuptools-scm ];
dependencies = with python3Packages; [
colorama
iproute2
iptables
netaddr
netifaces
setuptools
scapy
terminaltables
tqdm
];
# Project has no tests
doCheck = false;
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 = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "evillimiter";
};
}