pythonPackages.mitmproxy: disable for Python < 3.8

This commit is contained in:
Robert Schütz
2021-01-23 12:17:51 +01:00
committed by Fabian Affolter
parent cfce2f382a
commit b5217c5d2a

View File

@@ -44,7 +44,7 @@
buildPythonPackage rec {
pname = "mitmproxy";
version = "6.0.2";
disabled = isPy27;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = pname;