14 lines
518 B
Python
14 lines
518 B
Python
"""Loads the six library, used by TF."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "six_archive",
|
|
build_file = "@xla//third_party:six.BUILD",
|
|
sha256 = "1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926",
|
|
strip_prefix = "six-1.16.0",
|
|
system_build_file = "//third_party/systemlibs:six.BUILD",
|
|
urls = tf_mirror_urls("https://pypi.python.org/packages/source/s/six/six-1.16.0.tar.gz"),
|
|
)
|