python: typing: 3.5.3.0 -> 3.6.4

This commit is contained in:
Robert Schütz
2018-02-03 13:16:47 +01:00
committed by Frederik Rietdijk
parent 4bd9faf288
commit 66dc266530
2 changed files with 30 additions and 15 deletions

View File

@@ -0,0 +1,29 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy3k, python }:
let
testDir = if isPy3k then "src" else "python2";
in buildPythonPackage rec {
pname = "typing";
version = "3.6.4";
src = fetchPypi {
inherit pname version;
sha256 = "d400a9344254803a2368533e4533a4200d21eb7b6b729c173bc38201a74db3f2";
};
# Error for Python3.6: ImportError: cannot import name 'ann_module'
# See https://github.com/python/typing/pull/280
doCheck = pythonOlder "3.6";
checkPhase = ''
cd ${testDir}
${python.interpreter} -m unittest discover
'';
meta = with lib; {
description = "Backport of typing module to Python versions older than 3.5";
homepage = https://docs.python.org/3/library/typing.html;
license = licenses.psfl;
};
}