File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -73,8 +73,12 @@ def _pip_parse_ext_attrs():
73
73
return attrs
74
74
75
75
pip = module_extension (
76
+ doc = """\
77
+ This extension is used to create a pip respository and create the various wheel libaries if
78
+ provided in a requirements file.
79
+ """ ,
76
80
implementation = _pip_impl ,
77
81
tag_classes = {
78
82
"parse" : tag_class (attrs = _pip_parse_ext_attrs ()),
79
83
},
80
- )
84
+ )
Original file line number Diff line number Diff line change @@ -17,8 +17,9 @@ def _internal_deps_impl(module_ctx):
17
17
install_coverage_deps ()
18
18
19
19
internal_deps = module_extension (
20
+ doc = "This extension to register internal rules_python dependecies." ,
20
21
implementation = _internal_deps_impl ,
21
22
tag_classes = {
22
23
"install" : tag_class (attrs = dict ()),
23
24
},
24
- )
25
+ )
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ def _python_impl(module_ctx):
42
42
)
43
43
44
44
python = module_extension (
45
+ doc = "Bzlmod extension that is used to register a Python toolchain." ,
45
46
implementation = _python_impl ,
46
47
tag_classes = {
47
48
"toolchain" : tag_class (
@@ -60,4 +61,4 @@ python = module_extension(
60
61
},
61
62
),
62
63
},
63
- )
64
+ )
You can’t perform that action at this time.
0 commit comments