ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
37 lines
695 B
Nix
37 lines
695 B
Nix
{ 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";
|
|
homepage = "https://github.com/dirkjanm/mitm6";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ arcayr ];
|
|
};
|
|
}
|