STT-tensorflow/third_party/backports_weakref.BUILD
A. Unique TensorFlower 985ad0276a PY2 removal cleanup
PiperOrigin-RevId: 352907145
Change-Id: I82de30d92dc9c2b53215d6d5732c67afe339c23d
2021-01-20 17:11:44 -08:00

23 lines
453 B
Plaintext

# Description:
# Backport of new features in Python's weakref module.
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Python 2.0
py_library(
name = "org_python_pypi_backports_weakref",
srcs = [
"backports/__init__.py",
"backports/weakref.py",
],
srcs_version = "PY3",
)
genrule(
name = "license",
srcs = ["@org_python_license"],
outs = ["LICENSE"],
cmd = "cp $< $@",
)