2017-10-04 05:03:13 -07:00
|
|
|
{ stdenv, fetchpatch, fetchFromGitHub, fetchurl, python3, glibcLocales }:
|
2017-01-04 00:18:04 -08:00
|
|
|
|
2017-11-02 16:38:23 -07:00
|
|
|
python3.pkgs.buildPythonPackage rec {
|
2017-01-04 00:18:04 -08:00
|
|
|
baseName = "mitmproxy";
|
2017-11-02 16:38:23 -07:00
|
|
|
name = "${baseName}-unstable-2017-10-31";
|
2017-01-04 00:18:04 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = baseName;
|
|
|
|
repo = baseName;
|
2017-11-02 16:38:23 -07:00
|
|
|
rev = "80a8eaa708ea31dd9c5e7e1ab6b02c69079039c0";
|
|
|
|
sha256 = "0rvwm11yryzlp3c1i42rk2iv1m38yn6r83k41jb51hwg6wzbwzvw";
|
2017-01-04 00:18:04 -08:00
|
|
|
};
|
|
|
|
|
2017-08-27 23:27:59 -07:00
|
|
|
checkPhase = ''
|
|
|
|
export HOME=$(mktemp -d)
|
2017-09-04 14:46:19 -07:00
|
|
|
# test_echo resolves hostnames
|
2017-11-02 16:38:23 -07:00
|
|
|
LC_CTYPE=en_US.UTF-8 pytest -k 'not test_echo and not test_find_unclaimed_URLs '
|
2017-08-27 23:27:59 -07:00
|
|
|
'';
|
|
|
|
|
2017-11-02 16:38:23 -07:00
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
|
|
blinker click certifi cryptography
|
|
|
|
h2 hyperframe
|
|
|
|
kaitaistruct passlib pyasn1 pyopenssl
|
2017-05-07 03:55:45 -07:00
|
|
|
pyparsing pyperclip requests ruamel_yaml tornado
|
2017-11-02 16:38:23 -07:00
|
|
|
urwid brotlipy sortedcontainers ldap3
|
2017-01-04 00:18:04 -08:00
|
|
|
];
|
|
|
|
|
2017-11-02 16:38:23 -07:00
|
|
|
buildInputs = with python3.pkgs; [
|
|
|
|
beautifulsoup4 flask pytest pytestrunner glibcLocales
|
2017-08-27 23:27:59 -07:00
|
|
|
];
|
2017-01-04 00:18:04 -08:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Man-in-the-middle proxy";
|
2017-08-01 13:03:30 -07:00
|
|
|
homepage = http://mitmproxy.org/;
|
2017-01-04 00:18:04 -08:00
|
|
|
license = licenses.mit;
|
2017-10-04 05:03:13 -07:00
|
|
|
maintainers = with maintainers; [ fpletz kamilchm ];
|
2017-01-04 00:18:04 -08:00
|
|
|
};
|
|
|
|
}
|