1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 02:24:27 +00:00
nixpkgs/pkgs/tools/networking/mitmproxy/default.nix

61 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchpatch, fetchFromGitHub, fetchurl, python3, glibcLocales }:
2017-12-31 12:50:17 +00:00
let
# 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 {
baseName = "mitmproxy";
2017-11-02 23:38:23 +00:00
name = "${baseName}-unstable-2017-10-31";
src = fetchFromGitHub {
owner = baseName;
repo = baseName;
2017-11-02 23:38:23 +00:00
rev = "80a8eaa708ea31dd9c5e7e1ab6b02c69079039c0";
sha256 = "0rvwm11yryzlp3c1i42rk2iv1m38yn6r83k41jb51hwg6wzbwzvw";
};
2017-08-28 07:27:59 +01:00
checkPhase = ''
export HOME=$(mktemp -d)
# 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 07:27:59 +01:00
'';
2017-12-31 12:50:17 +00:00
propagatedBuildInputs = [
2017-11-02 23:38:23 +00:00
blinker click certifi cryptography
h2 hyperframe
kaitaistruct passlib pyasn1 pyopenssl
pyparsing pyperclip requests ruamel_yaml tornado
2017-11-02 23:38:23 +00:00
urwid brotlipy sortedcontainers ldap3
];
2017-12-31 12:50:17 +00:00
buildInputs = [
2017-11-02 23:38:23 +00:00
beautifulsoup4 flask pytest pytestrunner glibcLocales
2017-08-28 07:27:59 +01:00
];
meta = with stdenv.lib; {
description = "Man-in-the-middle proxy";
homepage = http://mitmproxy.org/;
license = licenses.mit;
maintainers = with maintainers; [ fpletz kamilchm ];
};
}