13 testDir = if isPy3k then "src" else "python2";
16 buildPythonPackage rec {
21 inherit pname version;
22 sha256 = "13b4ad211f54ddbf93e5901a9967b1e07720c1d1b78d596ac6a439641aa1b130";
25 disabled = pythonAtLeast "3.5";
27 # Error for Python3.6: ImportError: cannot import name 'ann_module'
28 # See https://github.com/python/typing/pull/280
29 # Also, don't bother on PyPy: AssertionError: TypeError not raised
30 doCheck = pythonOlder "3.6" && !isPyPy;
32 nativeCheckInputs = [ unittestCheckHook ];
34 unittestFlagsArray = [
40 description = "Backport of typing module to Python versions older than 3.5";
41 homepage = "https://docs.python.org/3/library/typing.html";
42 license = licenses.psfl;