Skip to content
This repository has been archived by the owner on Oct 20, 2020. It is now read-only.

Commit

Permalink
fix kwargs (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
dillon-giacoppo authored Apr 4, 2020
1 parent 8c8c601 commit 825ca18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pip_repository = repository_rule(
)


def pip_install(requirements, name=DEFAULT_REPOSITORY_NAME):
def pip_install(requirements, name=DEFAULT_REPOSITORY_NAME, **kwargs):
pip_repository(
name=name, requirements=requirements,
name=name, requirements=requirements, **kwargs
)

0 comments on commit 825ca18

Please sign in to comment.