mitm6: init at 0.3.0

This commit is contained in:
Elliot Speck (Arcayr) 2023-08-01 02:22:24 +10:00
parent 81ce09a40f
commit 95ba50f055
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, fetchPypi
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "mitm6";
version = "0.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-g+eFcJdgP7CQ6ntN17guJa4LdkGIb91mr/NKRPIukP8=";
};
propagatedBuildInputs = with python3.pkgs; [
scapy
future
twisted
netifaces
];
# No tests exist for mitm6.
doCheck = false;
pythonImportsCheck = [
"mitm6"
];
meta = {
description = "DHCPv6 network spoofing application";
homepage = "https://github.com/dirkjanm/mitm6";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ arcayr ];
};
}

View File

@ -9870,6 +9870,8 @@ with pkgs;
ministat = callPackage ../tools/misc/ministat { };
mitm6 = callPackage ../tools/security/mitm6 { };
mjolnir = callPackage ../servers/mjolnir {
matrix-sdk-crypto-nodejs = matrix-sdk-crypto-nodejs-0_1_0-beta_3;
};