nixpkgs/pkgs/tools/security/mitm6/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
688 B
Nix
Raw Normal View History

2023-07-31 19:22:24 +03:00
{ 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";
mainProgram = "mitm6";
2023-07-31 19:22:24 +03:00
homepage = "https://github.com/dirkjanm/mitm6";
license = lib.licenses.gpl2Only;
2024-06-21 07:06:20 +03:00
maintainers = with lib.maintainers; [ ];
2023-07-31 19:22:24 +03:00
};
}