From 1b2392dcb70581e7fbe112cd77f0b292e2c336e2 Mon Sep 17 00:00:00 2001 From: Volcomix Date: Sun, 7 Apr 2024 11:48:24 +0200 Subject: [PATCH] Load python repository into bazel build --- tflite/WORKSPACE | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tflite/WORKSPACE b/tflite/WORKSPACE index 1f0a580..e57fd2f 100644 --- a/tflite/WORKSPACE +++ b/tflite/WORKSPACE @@ -11,6 +11,18 @@ http_archive( ], ) +# Python +http_archive( + name = "rules_python", + sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b", + strip_prefix = "rules_python-0.26.0", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz", +) + +load("@rules_python//python:repositories.bzl", "py_repositories") + +py_repositories() + # TensorFlow local_repository( name = "org_tensorflow",