lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 38 lines 730 B view raw
1{ 2 lib, 3 fetchPypi, 4 python3, 5}: 6 7python3.pkgs.buildPythonApplication rec { 8 pname = "mitm6"; 9 version = "0.3.0"; 10 pyproject = true; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-g+eFcJdgP7CQ6ntN17guJa4LdkGIb91mr/NKRPIukP8="; 15 }; 16 17 build-system = with python3.pkgs; [ setuptools ]; 18 19 dependencies = with python3.pkgs; [ 20 future 21 netifaces 22 scapy 23 twisted 24 ]; 25 26 # No tests exist for mitm6. 27 doCheck = false; 28 29 pythonImportsCheck = [ "mitm6" ]; 30 31 meta = { 32 description = "DHCPv6 network spoofing application"; 33 homepage = "https://github.com/dirkjanm/mitm6"; 34 license = lib.licenses.gpl2Only; 35 maintainers = with lib.maintainers; [ fab ]; 36 mainProgram = "mitm6"; 37 }; 38}