dream2nix/pkgs/fetchPipMetadata/urwid-mitmproxy.nix
2024-03-25 06:15:31 +00:00

38 lines
800 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
glibcLocales,
pythonOlder,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "urwid-mitmproxy";
version = "2.1.2.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mitmproxy";
repo = "urwid-mitmproxy";
rev = "refs/tags/${version}";
hash = "sha256-93AauYWbrG/2smAhbNKGE0twGJZ2u9gBetlXGCpciH8=";
};
pythonImportsCheck = [
"urwid"
];
# Tests which assert on strings don't decode results correctly, see urwid
doCheck = false;
meta = with lib; {
description = "Urwid fork used by mitmproxy";
homepage = "https://github.com/mitmproxy/urwid-mitmproxy";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [fab];
};
}