xref: /aosp_15_r20/external/bazelbuild-rules_cc/third_party/six.BUILD (revision eed53cd41c5909d05eedc7ad9720bb158fd93452)
1*eed53cd4SHONG Yifan# Description:
2*eed53cd4SHONG Yifan#   Six provides simple utilities for wrapping over differences between Python 2
3*eed53cd4SHONG Yifan#   and Python 3.
4*eed53cd4SHONG Yifan
5*eed53cd4SHONG Yifanload("@rules_python//python:defs.bzl", "py_library")
6*eed53cd4SHONG Yifan
7*eed53cd4SHONG Yifanlicenses(["notice"])  # MIT
8*eed53cd4SHONG Yifan
9*eed53cd4SHONG Yifanexports_files(["LICENSE"])
10*eed53cd4SHONG Yifan
11*eed53cd4SHONG Yifanpy_library(
12*eed53cd4SHONG Yifan    name = "six",
13*eed53cd4SHONG Yifan    srcs = ["six.py"],
14*eed53cd4SHONG Yifan    srcs_version = "PY2AND3",
15*eed53cd4SHONG Yifan    visibility = ["//visibility:public"],
16*eed53cd4SHONG Yifan)
17