Files
nixpkgs/pkgs/development/python-modules/mitmproxy/default.nix

157 lines
3.0 KiB
Nix

{
lib,
aioquic,
argon2-cffi,
asgiref,
bcrypt,
brotli,
buildPythonPackage,
certifi,
cryptography,
fetchFromGitHub,
flask,
h11,
h2,
hyperframe,
hypothesis,
kaitaistruct,
ldap3,
mitmproxy-rs,
msgpack,
publicsuffix2,
pyopenssl,
pyparsing,
pyperclip,
pytest-asyncio,
pytest-timeout,
pytest-xdist,
pytestCheckHook,
requests,
ruamel-yaml,
setuptools,
sortedcontainers,
tornado,
urwid,
wsproto,
zstandard,
}:
buildPythonPackage rec {
pname = "mitmproxy";
version = "12.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mitmproxy";
repo = "mitmproxy";
tag = "v${version}";
hash = "sha256-2ldebsgR0xZV4WiCLV7DBUKXZo3oE+M6cmvRbSeCSLQ=";
};
pythonRelaxDeps = [
"bcrypt"
"cryptography"
"flask"
"h2"
"kaitaistruct"
"pyopenssl"
"pyperclip"
"tornado"
"typing-extensions"
"urwid"
"zstandard"
];
build-system = [ setuptools ];
dependencies = [
aioquic
argon2-cffi
asgiref
brotli
bcrypt
certifi
cryptography
flask
h11
h2
hyperframe
kaitaistruct
ldap3
mitmproxy-rs
msgpack
publicsuffix2
pyopenssl
pyparsing
pyperclip
ruamel-yaml
sortedcontainers
tornado
urwid
wsproto
zstandard
];
nativeCheckInputs = [
hypothesis
pytest-asyncio
pytest-timeout
pytest-xdist
pytestCheckHook
requests
];
__darwinAllowLocalNetworking = true;
preCheck = ''
export HOME=$(mktemp -d)
'';
disabledTests = [
# Tests require a git repository
"test_get_version"
# https://github.com/mitmproxy/mitmproxy/commit/36ebf11916704b3cdaf4be840eaafa66a115ac03
# Tests require terminal
"test_commands_exist"
"test_contentview_flowview"
"test_flowview"
"test_get_hex_editor"
"test_integration"
"test_spawn_editor"
"test_statusbar"
# FileNotFoundError: [Errno 2] No such file or directory
# likely wireguard is also not working in the sandbox
"test_tun_mode"
"test_wireguard"
# test require a DNS server
# RuntimeError: failed to get dns servers: io error: entity not found
"test_errorcheck"
"test_errorcheck"
"test_dns"
"test_order"
];
disabledTestPaths = [
# test require a DNS server
# RuntimeError: failed to get dns servers: io error: entity not found
"test/mitmproxy/addons/test_dns_resolver.py"
"test/mitmproxy/tools/test_dump.py"
"test/mitmproxy/tools/test_main.py"
"test/mitmproxy/tools/web/test_app.py"
"test/mitmproxy/tools/web/test_app.py" # 2 out of 31 tests work
"test/mitmproxy/tools/web/test_master.py"
];
dontUsePytestXdist = true;
pythonImportsCheck = [ "mitmproxy" ];
meta = with lib; {
description = "Man-in-the-middle proxy";
homepage = "https://mitmproxy.org/";
changelog = "https://github.com/mitmproxy/mitmproxy/blob/${src.tag}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}