nixpkgs/pkgs/tools/networking/mitmproxy/default.nix

61 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python3Packages, glibcLocales, fetchpatch }:
2017-12-31 12:50:17 +00:00
2018-02-25 01:38:59 +00:00
with python3Packages;
2017-12-31 12:50:17 +00:00
buildPythonPackage rec {
2018-02-25 01:38:59 +00:00
pname = "mitmproxy";
version = "4.0.4";
src = fetchFromGitHub {
2018-02-25 01:38:59 +00:00
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";
})
];
2018-02-25 01:38:59 +00:00
postPatch = ''
# remove dependency constraints
sed 's/>=\([0-9]\.\?\)\+\( \?, \?<\([0-9]\.\?\)\+\)\?//' -i setup.py
'';
doCheck = (!stdenv.isDarwin);
2017-08-28 06:27:59 +00:00
checkPhase = ''
export HOME=$(mktemp -d)
2018-02-25 01:38:59 +00:00
export LC_CTYPE=en_US.UTF-8
pytest -k 'not test_find_unclaimed_URLs'
2017-08-28 06:27:59 +00:00
'';
2017-12-31 12:50:17 +00:00
propagatedBuildInputs = [
2017-11-02 23:38:23 +00:00
blinker click certifi cryptography
2018-02-25 01:38:59 +00:00
h2 hyperframe kaitaistruct passlib
pyasn1 pyopenssl pyparsing pyperclip
2018-04-06 12:45:56 +00:00
ruamel_yaml tornado urwid brotlipy
sortedcontainers ldap3 wsproto
];
2018-04-06 12:45:56 +00:00
checkInputs = [
2018-02-25 01:38:59 +00:00
beautifulsoup4 flask pytest
2018-04-06 12:45:56 +00:00
requests glibcLocales
asynctest parver pytest-asyncio
2017-08-28 06:27:59 +00:00
];
meta = with stdenv.lib; {
description = "Man-in-the-middle proxy";
2018-02-25 01:38:59 +00:00
homepage = https://mitmproxy.org/;
license = licenses.mit;
maintainers = with maintainers; [ fpletz kamilchm ];
};
}