[bazel] Add `strip_prefix` to download of @six

This way, we can avoid an unnecessary copy.
pull/6818/head
Yannic Bonenberger 5 years ago committed by Adam Cozzette
parent 342a2d627c
commit 29d650aefb
  1. 1
      protobuf_deps.bzl
  2. 15
      third_party/six.BUILD

@ -27,6 +27,7 @@ def protobuf_deps():
name = "six",
build_file = "@com_google_protobuf//:third_party/six.BUILD",
sha256 = "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73",
strip_prefix = "six-1.12.0",
urls = ["https://pypi.python.org/packages/source/s/six/six-1.12.0.tar.gz"],
)

@ -1,13 +1,8 @@
genrule(
name = "copy_six",
srcs = ["six-1.12.0/six.py"],
outs = ["__init__.py"],
cmd = "cp $< $(@)",
)
load("@rules_python//python:defs.bzl", "py_library")
py_library(
name = "six",
srcs = ["__init__.py"],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
name = "six",
srcs = ["six.py"],
srcs_version = "PY2AND3",
visibility = ["//visibility:public"],
)

Loading…
Cancel
Save