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