aboutsummaryrefslogtreecommitdiff
path: root/python/extensions/private/internal_deps.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'python/extensions/private/internal_deps.bzl')
-rw-r--r--python/extensions/private/internal_deps.bzl23
1 files changed, 23 insertions, 0 deletions
diff --git a/python/extensions/private/internal_deps.bzl b/python/extensions/private/internal_deps.bzl
new file mode 100644
index 0000000..27e290c
--- /dev/null
+++ b/python/extensions/private/internal_deps.bzl
@@ -0,0 +1,23 @@
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"Python toolchain module extension for internal rule use"
+
+load("@rules_python//python/pip_install:repositories.bzl", "pip_install_dependencies")
+
+# buildifier: disable=unused-variable
+def _internal_deps_impl(module_ctx):
+ pip_install_dependencies()
+
+internal_deps = module_extension(
+ doc = "This extension to register internal rules_python dependecies.",
+ implementation = _internal_deps_impl,
+ tag_classes = {
+ "install": tag_class(attrs = dict()),
+ },
+)