lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python311Packages.urwid-mitmproxy: init at 2.1.2.1

+39
+37
pkgs/development/python-modules/urwid-mitmproxy/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , fetchpatch 5 + , glibcLocales 6 + , pythonOlder 7 + , unittestCheckHook 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "urwid-mitmproxy"; 12 + version = "2.1.2.1"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "mitmproxy"; 19 + repo = "urwid-mitmproxy"; 20 + rev = "refs/tags/${version}"; 21 + hash = "sha256-93AauYWbrG/2smAhbNKGE0twGJZ2u9gBetlXGCpciH8="; 22 + }; 23 + 24 + pythonImportsCheck = [ 25 + "urwid" 26 + ]; 27 + 28 + # Tests which assert on strings don't decode results correctly, see urwid 29 + doCheck = false; 30 + 31 + meta = with lib; { 32 + description = "Urwid fork used by mitmproxy"; 33 + homepage = "https://github.com/mitmproxy/urwid-mitmproxy"; 34 + license = licenses.lgpl21Plus; 35 + maintainers = with maintainers; [ fab ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 13312 13312 13313 13313 urwidtrees = callPackage ../development/python-modules/urwidtrees { }; 13314 13314 13315 + urwid-mitmproxy = callPackage ../development/python-modules/urwid-mitmproxy { }; 13316 + 13315 13317 urwid-readline = callPackage ../development/python-modules/urwid-readline { }; 13316 13318 13317 13319 usb-devices = callPackage ../development/python-modules/usb-devices { };