blob: 3cbf4257602f2a44b1af436d5a4b9eb812a8766b [file]
load("//:compile.bzl", "proto_compile")
def python_proto_compile(**kwargs):
# Append the python plugins and call generic compile
kwargs["plugins"] = kwargs.get("plugins", []) + [
Label("//python:python"),
]
proto_compile(**kwargs)