STT-tensorflow/third_party/typing_extensions.BUILD
Dan Moldovan 359db190bc Fix build rules for typing_extensions dependency.
PiperOrigin-RevId: 328530697
Change-Id: Ib258f70f231f73464c00f20dea67d6339f87e8ae
2020-08-26 07:56:22 -07:00

21 lines
502 B
Plaintext

# 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 = ["typing_extensions.py"],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)
genrule(
name = "license",
srcs = ["@astunparse_license"],
outs = ["LICENSE"],
cmd = "cp $< $@",
visibility = ["//visibility:public"],
)