1"""loads the aws library, used by TF.""" 2 3load("//third_party:repo.bzl", "third_party_http_archive") 4 5def repo(): 6 third_party_http_archive( 7 name = "ortools_archive", 8 urls = [ 9 "https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/or-tools/archive/v6.7.2.tar.gz", 10 "https://github.com/google/or-tools/archive/v6.7.2.tar.gz", 11 ], 12 sha256 = "d025a95f78b5fc5eaa4da5f395f23d11c23cf7dbd5069f1f627f002de87b86b9", 13 strip_prefix = "or-tools-6.7.2/src", 14 build_file = "//third_party/ortools:BUILD.bazel", 15 ) 16