mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-23 14:31:55 +03:00
154 lines
2.8 KiB
Nix
154 lines
2.8 KiB
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
fetchFromGitHub,
|
||
|
buildPythonPackage,
|
||
|
pythonOlder,
|
||
|
# Mitmproxy requirements
|
||
|
aioquic-mitmproxy,
|
||
|
asgiref,
|
||
|
blinker,
|
||
|
brotli,
|
||
|
certifi,
|
||
|
cryptography,
|
||
|
flask,
|
||
|
h11,
|
||
|
h2,
|
||
|
hyperframe,
|
||
|
kaitaistruct,
|
||
|
ldap3,
|
||
|
mitmproxy-macos,
|
||
|
mitmproxy-rs,
|
||
|
msgpack,
|
||
|
passlib,
|
||
|
protobuf,
|
||
|
publicsuffix2,
|
||
|
pyopenssl,
|
||
|
pyparsing,
|
||
|
pyperclip,
|
||
|
ruamel-yaml,
|
||
|
setuptools,
|
||
|
sortedcontainers,
|
||
|
tornado,
|
||
|
urwid-mitmproxy,
|
||
|
wsproto,
|
||
|
zstandard,
|
||
|
# Additional check requirements
|
||
|
hypothesis,
|
||
|
parver,
|
||
|
pytest-asyncio,
|
||
|
pytest-timeout,
|
||
|
pytest-xdist,
|
||
|
pytestCheckHook,
|
||
|
requests,
|
||
|
pythonRelaxDepsHook,
|
||
|
}:
|
||
|
buildPythonPackage rec {
|
||
|
pname = "mitmproxy";
|
||
|
version = "10.1.6";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.9";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "mitmproxy";
|
||
|
repo = "mitmproxy";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-W+gxK5bNCit1jK9ojwE/HVjUz6OJcNw6Ac1lN5FxGgw=";
|
||
|
};
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"pyopenssl"
|
||
|
"cryptography"
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pythonRelaxDepsHook
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs =
|
||
|
[
|
||
|
aioquic-mitmproxy
|
||
|
asgiref
|
||
|
blinker
|
||
|
brotli
|
||
|
certifi
|
||
|
cryptography
|
||
|
flask
|
||
|
h11
|
||
|
h2
|
||
|
hyperframe
|
||
|
kaitaistruct
|
||
|
ldap3
|
||
|
mitmproxy-rs
|
||
|
msgpack
|
||
|
passlib
|
||
|
protobuf
|
||
|
publicsuffix2
|
||
|
pyopenssl
|
||
|
pyparsing
|
||
|
pyperclip
|
||
|
ruamel-yaml
|
||
|
setuptools
|
||
|
sortedcontainers
|
||
|
tornado
|
||
|
urwid-mitmproxy
|
||
|
wsproto
|
||
|
zstandard
|
||
|
]
|
||
|
++ lib.optionals stdenv.isDarwin [
|
||
|
mitmproxy-macos
|
||
|
];
|
||
|
|
||
|
nativeCheckInputs = [
|
||
|
hypothesis
|
||
|
parver
|
||
|
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_integration"
|
||
|
"test_contentview_flowview"
|
||
|
"test_flowview"
|
||
|
# ValueError: Exceeds the limit (4300) for integer string conversion
|
||
|
"test_roundtrip_big_integer"
|
||
|
"test_wireguard"
|
||
|
"test_commands_exist"
|
||
|
"test_statusbar"
|
||
|
# AssertionError: Playbook mismatch!
|
||
|
"test_untrusted_cert"
|
||
|
"test_mitmproxy_ca_is_untrusted"
|
||
|
];
|
||
|
|
||
|
disabledTestPaths = [
|
||
|
# teardown of half the tests broken
|
||
|
"test/mitmproxy/addons/test_onboarding.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/${version}/CHANGELOG.md";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [kamilchm SuperSandro2000];
|
||
|
};
|
||
|
}
|