aboutsummaryrefslogtreecommitdiffhomepage
path: root/six.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'six.BUILD')
-rw-r--r--six.BUILD9
1 files changed, 8 insertions, 1 deletions
diff --git a/six.BUILD b/six.BUILD
index a259232d..55c53a42 100644
--- a/six.BUILD
+++ b/six.BUILD
@@ -1,5 +1,12 @@
+genrule(
+ name = "copy_six",
+ srcs = ["six-1.10.0/six.py"],
+ outs = ["six.py"],
+ cmd = "cp $< $(@)",
+)
+
py_library(
name = "six",
- srcs = ["six-1.10.0/six.py"],
+ srcs = ["six.py"],
visibility = ["//visibility:public"],
)