Skip to content

Commit

Permalink
Restore docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sputt committed Sep 3, 2024
1 parent 8df46c7 commit d028f49
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions extensions/python.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,22 @@ This example was a multi-platform set of solutions, pulled into a single
hub repository named "pip_deps".
""",
attrs = {
"name": attr.string(mandatory = True),
"interpreter_linux": attr.label(),
"interpreter_macos_intel": attr.label(),
"interpreter_macos_aarch64": attr.label(),
"interpreter_windows": attr.label(),
"name": attr.string(
doc = "Name of the hub repository to create.",
mandatory = True,
),
"interpreter_linux": attr.label(
doc = "Optional Linux amd64 Python interpreter binary to use for sdists.",
),
"interpreter_macos_intel": attr.label(
doc = "Optional MacOS intel Python interpreter binary to use for sdists.",
),
"interpreter_macos_aarch64": attr.label(
doc = "Optional MacOS ARM Python interpreter binary to use for sdists.",
),
"interpreter_windows": attr.label(
doc = "Optional Windows x64 Python interpreter binary to use for sdists.",
),
"requirements_lock": attr.label(
doc = "A single lockfile for a single platform solution.",
),
Expand Down

0 comments on commit d028f49

Please sign in to comment.