python2Packages.typing: remove superfluous pythonOlder and pythonAtLeast

This commit is contained in:
Gutyina Gergő
2026-01-14 03:10:55 +01:00
parent ebbf76a407
commit 70f39947e1
@@ -2,11 +2,8 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
isPy3k,
isPyPy,
unittestCheckHook,
pythonAtLeast,
}:
let
@@ -23,12 +20,7 @@ buildPythonPackage rec {
sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
};
disabled = pythonAtLeast "3.5";
# Error for Python3.6: ImportError: cannot import name 'ann_module'
# See https://github.com/python/typing/pull/280
# Also, don't bother on PyPy: AssertionError: TypeError not raised
doCheck = pythonOlder "3.6" && !isPyPy;
disabled = true;
nativeCheckInputs = [ unittestCheckHook ];