mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
86d6a63e48
pytest5 isn't able to load examples.complex.xss_scanner even though a normal interpreter session is able to load it fine.
84 lines
2.6 KiB
Nix
84 lines
2.6 KiB
Nix
{ stdenv, fetchFromGitHub, python3Packages, glibcLocales, fetchpatch }:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mitmproxy";
|
|
version = "4.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "14i9dkafvyl15rq2qa8xldscn5lmkk2g52kbi2hl63nzx9yibx6r";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
# Tests failed due to expired test certificates,
|
|
# https://github.com/mitmproxy/mitmproxy/issues/3316
|
|
# TODO: remove on next update
|
|
name = "test-certificates.patch";
|
|
url = "https://github.com/mitmproxy/mitmproxy/commit/1b6a8d6acd3d70f9b9627ad4ae9def08103f8250.patch";
|
|
sha256 = "03y79c25yir7d8xj79czdc81y3irqq1i3ks9ca0mv1az8b7xsvfv";
|
|
})
|
|
(fetchpatch {
|
|
# 0.13 <= wsproto < 0.14 patch
|
|
# https://github.com/mitmproxy/mitmproxy/issues/3459
|
|
# TODO: remove on next update
|
|
name = "wsproto-0.13.patch";
|
|
url = https://github.com/mitmproxy/mitmproxy/commit/70777a1b6ed64af9cafcdef223a8a260ecc96864.patch;
|
|
sha256 = "1ddxdr7js510kzyq3gyks4k5k1n8zb1i9amxw7wzmi1dcg8kqw9a";
|
|
# We strip these bounds anyway
|
|
excludes = [ "setup.py" ];
|
|
})
|
|
(fetchpatch {
|
|
# Fix for newer pytest disallowing calling fixtures
|
|
# https://github.com/mitmproxy/mitmproxy/issues/3403
|
|
# TODO: remove on next update
|
|
name = "dont-call-fixtures.patch";
|
|
url = https://github.com/mitmproxy/mitmproxy/commit/ce28721458c8cc71de86513a5110676e9763041b.patch;
|
|
sha256 = "05pljr28lx7l1xgswqr9sz8dnhvc7npzh8xg2p9hignf159kd54d";
|
|
# Irrelevant in nixpkgs
|
|
excludes = [ "setup.py" "setup.cfg" "release/docker/*" ];
|
|
})
|
|
./pytest5.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
# remove dependency constraints
|
|
sed 's/>=\([0-9]\.\?\)\+\( \?, \?<\([0-9]\.\?\)\+\)\?//' -i setup.py
|
|
'';
|
|
|
|
doCheck = (!stdenv.isDarwin);
|
|
|
|
# examples.complex.xss_scanner doesn't import correctly with pytest5
|
|
checkPhase = ''
|
|
export HOME=$(mktemp -d)
|
|
export LC_CTYPE=en_US.UTF-8
|
|
pytest --ignore test/examples \
|
|
-k 'not test_find_unclaimed_URLs and not test_tcp'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
blinker click certifi cryptography
|
|
h2 hyperframe kaitaistruct passlib
|
|
pyasn1 pyopenssl pyparsing pyperclip
|
|
ruamel_yaml tornado urwid brotlipy
|
|
sortedcontainers ldap3 wsproto setuptools
|
|
];
|
|
|
|
checkInputs = [
|
|
beautifulsoup4 flask pytest
|
|
requests glibcLocales
|
|
asynctest parver pytest-asyncio
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Man-in-the-middle proxy";
|
|
homepage = https://mitmproxy.org/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fpletz kamilchm ];
|
|
};
|
|
}
|