🚀 feature request
Relevant Rules
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
🚀 feature request
Relevant Rules
entry_pointpy_binaryDescription
afaict, you cant pass kwargs - eg
args,dataetc into anentry_pointrule, it would be handy if you couldDescribe the solution you'd like
To be able to do something like
Describe alternatives you've considered
wrapping the entry_point one way or another to call it with the required
data,args