blob: 9c1c87ab229f2bb58c8372e082e37ce7c5d70658 [file] [log] [blame]
"Module extensions for use with bzlmod"
load("@rules_python//python/pip_install:repositories.bzl", "pip_install_dependencies")
def _pip_install_impl(_):
pip_install_dependencies()
pip_install = module_extension(
implementation = _pip_install_impl,
)