mitmproxy: 2017-10-31 -> 3.0.2
This commit is contained in:
parent
48283de641
commit
85dda553fa
@ -1,60 +1,47 @@
|
|||||||
{ stdenv, fetchpatch, fetchFromGitHub, fetchurl, python3, glibcLocales }:
|
{ stdenv, fetchFromGitHub, python3Packages, glibcLocales }:
|
||||||
|
|
||||||
let
|
with python3Packages;
|
||||||
# When overrides are not needed, then only remove the contents of this set.
|
|
||||||
packageOverrides = self: super: {
|
|
||||||
ldap3 = super.ldap3.overridePythonAttrs (oldAttrs: rec {
|
|
||||||
version = "2.3";
|
|
||||||
src = oldAttrs.src.override {
|
|
||||||
inherit version;
|
|
||||||
sha256 = "c056b3756076e15aa71c963c7c5a44d5d9bbd430263ee49598d4454223a766ac";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
pyasn1 = super.pyasn1.overridePythonAttrs (oldAttrs: rec {
|
|
||||||
version = "0.3.7";
|
|
||||||
src = oldAttrs.src.override {
|
|
||||||
inherit version;
|
|
||||||
sha256 = "187f2a66d617683f8e82d5c00033b7c8a0287e1da88a9d577aebec321cad4965";
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
pythonPackages = (python3.override {inherit packageOverrides; }).pkgs;
|
|
||||||
in with pythonPackages;
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
baseName = "mitmproxy";
|
pname = "mitmproxy";
|
||||||
name = "${baseName}-unstable-2017-10-31";
|
version = "3.0.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = baseName;
|
owner = pname;
|
||||||
repo = baseName;
|
repo = pname;
|
||||||
rev = "80a8eaa708ea31dd9c5e7e1ab6b02c69079039c0";
|
rev = "v${version}";
|
||||||
sha256 = "0rvwm11yryzlp3c1i42rk2iv1m38yn6r83k41jb51hwg6wzbwzvw";
|
sha256 = "0rvwm11yryzlp3c1i42rk2iv1m38yn6r83k41jb51hwg6wzbwzvw";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# remove dependency constraints
|
||||||
|
sed 's/>=\([0-9]\.\?\)\+\( \?, \?<\([0-9]\.\?\)\+\)\?//' -i setup.py
|
||||||
|
'';
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
export HOME=$(mktemp -d)
|
export HOME=$(mktemp -d)
|
||||||
|
export LC_CTYPE=en_US.UTF-8
|
||||||
# test_echo resolves hostnames
|
# test_echo resolves hostnames
|
||||||
LC_CTYPE=en_US.UTF-8 pytest -k 'not test_echo and not test_find_unclaimed_URLs '
|
pytest -k 'not test_echo and not test_find_unclaimed_URLs '
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
blinker click certifi cryptography
|
blinker click certifi cryptography
|
||||||
h2 hyperframe
|
h2 hyperframe kaitaistruct passlib
|
||||||
kaitaistruct passlib pyasn1 pyopenssl
|
pyasn1 pyopenssl pyparsing pyperclip
|
||||||
pyparsing pyperclip requests ruamel_yaml tornado
|
requests ruamel_yaml tornado urwid
|
||||||
urwid brotlipy sortedcontainers ldap3
|
brotlipy sortedcontainers ldap3
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
beautifulsoup4 flask pytest pytestrunner glibcLocales
|
beautifulsoup4 flask pytest
|
||||||
|
pytestrunner glibcLocales
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Man-in-the-middle proxy";
|
description = "Man-in-the-middle proxy";
|
||||||
homepage = https://mitmproxy.org/;
|
homepage = https://mitmproxy.org/;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fpletz kamilchm ];
|
maintainers = with maintainers; [ fpletz kamilchm ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user