nixpkgs/pkgs/development/python-modules/typing/default.nix

31 lines
846 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, pythonOlder, isPy3k, isPyPy, python }:
2018-02-03 12:16:47 +00:00
let
testDir = if isPy3k then "src" else "python2";
in buildPythonPackage rec {
pname = "typing";
2019-08-15 14:33:42 +01:00
version = "3.7.4";
2018-02-03 12:16:47 +00:00
src = fetchPypi {
inherit pname version;
2019-08-15 14:33:42 +01:00
sha256 = "1kj4kvkh89psajxlyb72rm5fr7w70yb32zkj2h174arsz325wxjk";
2018-02-03 12:16:47 +00:00
};
# 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;
2018-02-03 12:16:47 +00:00
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;
};
}