Home | History | Annotate | Download | only in protobuf
      1 genrule(
      2   name = "copy_six",
      3   srcs = ["six-1.10.0/six.py"],
      4   outs = ["six.py"],
      5   cmd = "cp $< $(@)",
      6 )
      7 
      8 py_library(
      9   name = "six",
     10   srcs = ["six.py"],
     11   srcs_version = "PY2AND3",
     12   visibility = ["//visibility:public"],
     13 )
     14