You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
621 B
17 lines
621 B
4 months ago
|
"""Loads pasta python package."""
|
||
|
|
||
|
load("//third_party:repo.bzl", "third_party_http_archive")
|
||
|
|
||
|
def repo():
|
||
|
third_party_http_archive(
|
||
|
name = "pasta",
|
||
|
urls = [
|
||
|
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/pasta/archive/v0.1.8.tar.gz",
|
||
|
"https://github.com/google/pasta/archive/v0.1.8.tar.gz",
|
||
|
],
|
||
|
strip_prefix = "pasta-0.1.8",
|
||
|
sha256 = "c6dc1118250487d987a7b1a404425822def2e8fb2b765eeebc96887e982b6085",
|
||
|
build_file = "//third_party/pasta:BUILD.bazel",
|
||
|
system_build_file = "//third_party/pasta:BUILD.system",
|
||
|
)
|