Skip to content

Commit

Permalink
mitmproxy: convert to python3Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
veehaitch authored and Jon committed Sep 8, 2020
1 parent bbdc1d1 commit 0e56574
Show file tree
Hide file tree
Showing 4 changed files with 117 additions and 58 deletions.
114 changes: 114 additions & 0 deletions pkgs/development/python-modules/mitmproxy/default.nix
@@ -0,0 +1,114 @@
{ stdenv
, fetchFromGitHub
, buildPythonPackage
, isPy27
# Mitmproxy requirements
, blinker
, brotli
, certifi
, click
, cryptography
, flask
, h2
, hyperframe
, kaitaistruct
, ldap3
, passlib
, protobuf
, pyasn1
, pyopenssl
, pyparsing
, pyperclip
, ruamel_yaml
, setuptools
, sortedcontainers
, tornado
, urwid
, wsproto
, publicsuffix2
, zstandard
# Additional check requirements
, beautifulsoup4
, glibcLocales
, pytest
, requests
, asynctest
, parver
, pytest-asyncio
, hypothesis
}:

buildPythonPackage rec {
pname = "mitmproxy";
version = "5.1.1";
disabled = isPy27;

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1lirlckpvd3c6s6q3p32w4k4yfna5mlgr1x9g39lhzzq0sdiz3lk";
};

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 = [
setuptools
# setup.py
blinker
brotli
certifi
click
cryptography
flask
h2
hyperframe
kaitaistruct
ldap3
passlib
protobuf
publicsuffix2
pyasn1
pyopenssl
pyparsing
pyperclip
ruamel_yaml
sortedcontainers
tornado
urwid
wsproto
zstandard
];

checkInputs = [
asynctest
beautifulsoup4
flask
glibcLocales
hypothesis
parver
pytest
pytest-asyncio
requests
];

meta = with stdenv.lib; {
description = "Man-in-the-middle proxy";
homepage = "https://mitmproxy.org/";
license = licenses.mit;
maintainers = with maintainers; [ fpletz kamilchm ];
};
}
55 changes: 0 additions & 55 deletions pkgs/tools/networking/mitmproxy/default.nix

This file was deleted.

4 changes: 1 addition & 3 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -5470,9 +5470,7 @@ in

mirrorbits = callPackage ../servers/mirrorbits { };

mitmproxy = callPackage ../tools/networking/mitmproxy {
python3Packages = python37Packages;
};
mitmproxy = with python3Packages; toPythonApplication mitmproxy;

mjpegtools = callPackage ../tools/video/mjpegtools { };

Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -3657,6 +3657,8 @@ in {

mistune = callPackage ../development/python-modules/mistune { };

mitmproxy = callPackage ../development/python-modules/mitmproxy { };

mixpanel = callPackage ../development/python-modules/mixpanel { };

mkl-service = callPackage ../development/python-modules/mkl-service { };
Expand Down

0 comments on commit 0e56574

Please sign in to comment.