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