Members
- archive_override
- bazel_dep
- git_override
- include
- local_path_override
- module
- multiple_version_override
- register_execution_platforms
- register_toolchains
- single_version_override
- use_extension
- use_repo
- use_repo_rule
archive_override
None
archive_override(module_name, urls, integrity='', strip_prefix='', patches=[], patch_cmds=[], patch_strip=0)
Parameters
Parameter | Description |
---|---|
module_name
|
required The name of the Bazel module dependency to apply this override to. |
urls
|
string; or Iterable of strings;
required The URLs of the archive; can be http(s):// or file:// URLs. |
integrity
|
default is '' The expected checksum of the archive file, in Subresource Integrity format. |
strip_prefix
|
default is '' A directory prefix to strip from the extracted files. |
patches
|
Iterable of strings;
default is [] A list of labels pointing to patch files to apply for this module. The patch files must exist in the source tree of the top level project. They are applied in the list order. |
patch_cmds
|
Iterable of strings;
default is [] Sequence of Bash commands to be applied on Linux/Macos after patches are applied. |
patch_strip
|
default is 0 Same as the --strip argument of Unix patch. |
bazel_dep
None
bazel_dep(name, version='', max_compatibility_level=-1, repo_name='', dev_dependency=False)
Parameters
Parameter | Description |
---|---|
name
|
required The name of the module to be added as a direct dependency. |
version
|
default is '' The version of the module to be added as a direct dependency. |
max_compatibility_level
|
default is -1 The maximum compatibility_level supported for the module to be added as a direct dependency. The version of the module implies the minimum compatibility_level supported, as well as the maximum if this attribute is not specified.
|
repo_name
|
default is '' The name of the external repo representing this dependency. This is by default the name of the module. |
dev_dependency
|
default is False If true, this dependency will be ignored if the current module is not the root module or `--ignore_dev_dependency` is enabled. |
git_override
None
git_override(module_name, remote, commit='', patches=[], patch_cmds=[], patch_strip=0, init_submodules=False, strip_prefix='')
Parameters
Parameter | Description |
---|---|
module_name
|
required The name of the Bazel module dependency to apply this override to. |
remote
|
required The URL of the remote Git repository. |
commit
|
default is '' The commit that should be checked out. |
patches
|
Iterable of strings;
default is [] A list of labels pointing to patch files to apply for this module. The patch files must exist in the source tree of the top level project. They are applied in the list order. |
patch_cmds
|
Iterable of strings;
default is [] Sequence of Bash commands to be applied on Linux/Macos after patches are applied. |
patch_strip
|
default is 0 Same as the --strip argument of Unix patch. |
init_submodules
|
default is False Whether git submodules in the fetched repo should be recursively initialized. |
strip_prefix
|
default is '' A directory prefix to strip from the extracted files. This can be used to target a subdirectory of the git repo. Note that the subdirectory must have its own `MODULE.bazel` file with a module name that is the same as the `module_name` arg passed to this `git_override`. |
include
None
include(label)
include()
behaves as if the included file is textually placed at the location of the include()
call, except that variable bindings (such as those used for use_extension
) are only ever visible in the file they occur in, not in any included or including files.Only the root module may use include()
; it is an error if a bazel_dep
's MODULE file uses include()
.
Only files in the main repo may be included.
include()
allows you to segment the root module file into multiple parts, to avoid having an enormous MODULE.bazel file or to better manage access control for individual semantic segments.
Parameters
Parameter | Description |
---|---|
label
|
required The label pointing to the file to include. The label must point to a file in the main repo; in other words, it must start with double slashes ( // ).
|
local_path_override
None
local_path_override(module_name, path)
Parameters
Parameter | Description |
---|---|
module_name
|
required The name of the Bazel module dependency to apply this override to. |
path
|
required The path to the directory where this module is. |
module
None
module(name='', version='', compatibility_level=0, repo_name='', bazel_compatibility=[])
It should be called at most once, and if called, it must be the very first directive in the MODULE.bazel file. It can be omitted only if this module is the root module (as in, if it's not going to be depended on by another module).
Parameters
Parameter | Description |
---|---|
name
|
default is '' The name of the module. Can be omitted only if this module is the root module (as in, if it's not going to be depended on by another module). A valid module name must: 1) only contain lowercase letters (a-z), digits (0-9), dots (.), hyphens (-), and underscores (_); 2) begin with a lowercase letter; 3) end with a lowercase letter or digit. |
version
|
default is '' The version of the module. Can be omitted only if this module is the root module (as in, if it's not going to be depended on by another module). The version must be in a relaxed SemVer format; see the documentation for more details. |
compatibility_level
|
default is 0 The compatibility level of the module; this should be changed every time a major incompatible change is introduced. This is essentially the "major version" of the module in terms of SemVer, except that it's not embedded in the version string itself, but exists as a separate field. Modules with different compatibility levels participate in version resolution as if they're modules with different names, but the final dependency graph cannot contain multiple modules with the same name but different compatibility levels (unless multiple_version_override is in effect). See the documentation for more details.
|
repo_name
|
default is '' The name of the repository representing this module, as seen by the module itself. By default, the name of the repo is the name of the module. This can be specified to ease migration for projects that have been using a repo name for itself that differs from its module name. |
bazel_compatibility
|
Iterable of strings;
default is [] A list of bazel versions that allows users to declare which Bazel versions are compatible with this module. It does NOT affect dependency resolution, but bzlmod will use this information to check if your current Bazel version is compatible. The format of this value is a string of some constraint values separated by comma. Three constraints are supported: <=X.X.X: The Bazel version must be equal or older than X.X.X. Used when there is a known incompatible change in a newer version. >=X.X.X: The Bazel version must be equal or newer than X.X.X.Used when you depend on some features that are only available since X.X.X. -X.X.X: The Bazel version X.X.X is not compatible. Used when there is a bug in X.X.X that breaks you, but fixed in later versions. |
multiple_version_override
None
multiple_version_override(module_name, versions, registry='')
Parameters
Parameter | Description |
---|---|
module_name
|
required The name of the Bazel module dependency to apply this override to. |
versions
|
Iterable of strings;
required Explicitly specifies the versions allowed to coexist. These versions must already be present in the dependency graph pre-selection. Dependencies on this module will be "upgraded" to the nearest higher allowed version at the same compatibility level, whereas dependencies that have a higher version than any allowed versions at the same compatibility level will cause an error. |
registry
|
default is '' Overrides the registry for this module; instead of finding this module from the default list of registries, the given registry should be used. |
register_execution_platforms
None
register_execution_platforms(dev_dependency=False, *platform_labels)
@
or //
). See toolchain resolution for more information.
Parameters
Parameter | Description |
---|---|
dev_dependency
|
default is False If true, the execution platforms will not be registered if the current module is not the root module or `--ignore_dev_dependency` is enabled. |
platform_labels
|
sequence of strings;
required The labels of the platforms to register. |
register_toolchains
None
register_toolchains(dev_dependency=False, *toolchain_labels)
@
or //
). See toolchain resolution for more information.
Parameters
Parameter | Description |
---|---|
dev_dependency
|
default is False If true, the toolchains will not be registered if the current module is not the root module or `--ignore_dev_dependency` is enabled. |
toolchain_labels
|
sequence of strings;
required The labels of the toolchains to register. Labels can include :all , in which case, all toolchain-providing targets in the package will be registered in lexicographical order by name.
|
single_version_override
None
single_version_override(module_name, version='', registry='', patches=[], patch_cmds=[], patch_strip=0)
Parameters
Parameter | Description |
---|---|
module_name
|
required The name of the Bazel module dependency to apply this override to. |
version
|
default is '' Overrides the declared version of this module in the dependency graph. In other words, this module will be "pinned" to this override version. This attribute can be omitted if all one wants to override is the registry or the patches. |
registry
|
default is '' Overrides the registry for this module; instead of finding this module from the default list of registries, the given registry should be used. |
patches
|
Iterable of strings;
default is [] A list of labels pointing to patch files to apply for this module. The patch files must exist in the source tree of the top level project. They are applied in the list order. |
patch_cmds
|
Iterable of strings;
default is [] Sequence of Bash commands to be applied on Linux/Macos after patches are applied. |
patch_strip
|
default is 0 Same as the --strip argument of Unix patch. |
use_extension
module_extension_proxy use_extension(extension_bzl_file, extension_name, *, dev_dependency=False, isolate=False)
Parameters
Parameter | Description |
---|---|
extension_bzl_file
|
required A label to the Starlark file defining the module extension. |
extension_name
|
required The name of the module extension to use. A symbol with this name must be exported by the Starlark file. |
dev_dependency
|
default is False If true, this usage of the module extension will be ignored if the current module is not the root module or `--ignore_dev_dependency` is enabled. |
isolate
|
default is False Experimental. This parameter is experimental and may change at any time. Please do not depend on it. It may be enabled on an experimental basis by setting ---experimental_isolated_extension_usages If true, this usage of the module extension will be isolated from all other usages, both in this and other modules. Tags created for this usage do not affect other usages and the repositories generated by the extension for this usage will be distinct from all other repositories generated by the extension. This parameter is currently experimental and only available with the flag |
use_repo
None
use_repo(extension_proxy, *args, **kwargs)
Parameters
Parameter | Description |
---|---|
extension_proxy
|
required A module extension proxy object returned by a use_extension call.
|
args
|
required The names of the repos to import. |
kwargs
|
required Specifies certain repos to import into the scope of the current module with different names. The keys should be the name to use in the current scope, whereas the values should be the original names exported by the module extension. |
use_repo_rule
repo_rule_proxy use_repo_rule(repo_rule_bzl_file, repo_rule_name)
name
attribute on the proxy. The implicit Boolean dev_dependency
attribute can also be used on the proxy to denote that a certain repo is only to be created when the current module is the root module.
Parameters
Parameter | Description |
---|---|
repo_rule_bzl_file
|
required A label to the Starlark file defining the repo rule. |
repo_rule_name
|
required The name of the repo rule to use. A symbol with this name must be exported by the Starlark file. |