systemlibs: unbundle typing_extensions

Signed-off-by: Jason Zaman <jason@perfinion.com>
This commit is contained in:
Jason Zaman 2020-11-03 01:25:58 -08:00
parent db908716a4
commit 735ff1be2b
2 changed files with 17 additions and 0 deletions

View File

@ -44,6 +44,7 @@ VALID_LIBS = [
"snappy",
"tblib_archive",
"termcolor_archive",
"typing_extensions_archive",
"wrapt",
"zlib",
]

View File

@ -0,0 +1,16 @@
# Description:
# Backports for the typing module to older Python versions. See
# https://github.com/python/typing/blob/master/typing_extensions/README.rst
licenses(["notice"]) # PSF
py_library(
name = "typing_extensions",
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)
filegroup(
name = "LICENSE",
visibility = ["//visibility:public"],
)