14 lines
542 B
Python
14 lines
542 B
Python
"""Loads the sqlite library, used by TF."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
|
|
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "org_sqlite",
|
|
build_file = "//third_party/sqlite:sqlite.BUILD",
|
|
sha256 = "9ad6d16cbc1df7cd55c8b55127c82a9bca5e9f287818de6dc87e04e73599d754",
|
|
strip_prefix = "sqlite-amalgamation-3500300",
|
|
system_build_file = "//third_party/systemlibs:sqlite.BUILD",
|
|
urls = tf_mirror_urls("https://www.sqlite.org/2025/sqlite-amalgamation-3500300.zip"),
|
|
)
|