diff options
Diffstat (limited to 'Software/External Repositories/Protobuf/protobuf-3.4.1/six.BUILD')
| -rw-r--r-- | Software/External Repositories/Protobuf/protobuf-3.4.1/six.BUILD | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/External Repositories/Protobuf/protobuf-3.4.1/six.BUILD b/Software/External Repositories/Protobuf/protobuf-3.4.1/six.BUILD new file mode 100644 index 000000000..fb0b3604c --- /dev/null +++ b/Software/External Repositories/Protobuf/protobuf-3.4.1/six.BUILD @@ -0,0 +1,13 @@ +genrule( + name = "copy_six", + srcs = ["six-1.10.0/six.py"], + outs = ["six.py"], + cmd = "cp $< $(@)", +) + +py_library( + name = "six", + srcs = ["six.py"], + srcs_version = "PY2AND3", + visibility = ["//visibility:public"], +) |
