1# Description: 2# Backports for the typing module to older Python versions. See 3# https://github.com/python/typing/blob/master/typing_extensions/README.rst 4 5licenses(["notice"]) # PSF 6 7py_library( 8 name = "typing_extensions", 9 srcs = ["typing_extensions.py"], 10 srcs_version = "PY3", 11 visibility = ["//visibility:public"], 12) 13 14genrule( 15 name = "license", 16 srcs = ["@astunparse_license"], 17 outs = ["LICENSE"], 18 cmd = "cp $< $@", 19 visibility = ["//visibility:public"], 20) 21