2023-03-08 22:11:09 +00:00
|
|
|
workspace(
|
2023-03-15 06:45:32 +00:00
|
|
|
name = "flowmetal"
|
2023-03-08 22:11:09 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
2023-03-15 06:45:32 +00:00
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
|
|
|
|
http_archive(
|
|
|
|
name = "bazel_skylib",
|
|
|
|
sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7",
|
|
|
|
urls = [
|
|
|
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
|
|
|
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
|
|
|
|
|
|
|
|
bazel_skylib_workspace()
|
|
|
|
|
|
|
|
rules_python_version = "c504355672223144cefb2cbf3f69e2d38e7e2726"
|
|
|
|
|
2023-03-08 22:11:09 +00:00
|
|
|
http_archive(
|
|
|
|
name = "rules_python",
|
2023-03-15 06:45:32 +00:00
|
|
|
sha256 = "3f12b492dbf7d56b0e3deed81f21d56c3241babaa52d7eb525cb7c657bba9125",
|
|
|
|
strip_prefix = "rules_python-{}".format(rules_python_version),
|
|
|
|
url = "https://github.com/bazelbuild/rules_python/archive/{}.zip".format(rules_python_version),
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@rules_python//python:repositories.bzl", "python_register_toolchains")
|
|
|
|
|
|
|
|
python_register_toolchains(
|
|
|
|
name = "python3_10",
|
|
|
|
python_version = "3.10",
|
|
|
|
)
|
|
|
|
|
|
|
|
load("@python3_10//:defs.bzl", python3_10="interpreter")
|
|
|
|
|
|
|
|
load("@rules_python//python:pip.bzl", "pip_parse")
|
|
|
|
|
|
|
|
# Create a central repo that knows about the dependencies needed from
|
|
|
|
# requirements_lock.txt.
|
|
|
|
pip_parse(
|
|
|
|
name = "pypi",
|
|
|
|
python_interpreter_target = python3_10,
|
|
|
|
requirements_lock = "//tools/python:requirements_lock.txt",
|
2023-03-08 22:11:09 +00:00
|
|
|
)
|
|
|
|
|
2023-03-15 06:45:32 +00:00
|
|
|
load("@pypi//:requirements.bzl", "install_deps")
|
2023-03-08 22:11:09 +00:00
|
|
|
|
2023-03-15 06:45:32 +00:00
|
|
|
install_deps()
|