Closed
Description
🚀 feature request
Relevant Rules
entry_point
py_binary
Description
afaict, you cant pass kwargs - eg args
, data
etc into an entry_point
rule, it would be handy if you could
Describe the solution you'd like
To be able to do something like
alias(
name = "my_command",
actual = entry_point(
pkg = "my.upstream.command",
script = "my.upstream.command",
data = [":some_local_data"],
args = ["$(location :some_local_data)"],
),
)
Describe alternatives you've considered
wrapping the entry_point one way or another to call it with the required data
, args