forked from google-deepmind/lab2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpython_system.bzl
89 lines (74 loc) · 2.74 KB
/
python_system.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright 2021 DeepMind Technologies Limited.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ============================================================================
"""Generates a local repository that points at the system's Python installation."""
_BUILD_FILE = '''# Description:
# Build rule for Python.
load("@rules_python//python:defs.bzl", "py_runtime_pair")
exports_files(["defs.bzl"])
cc_library(
name = "python_headers",
hdrs = glob(["python3/**/*.h"]),
includes = ["python3"],
linkopts = select({{
"@platforms//os:linux": [],
"@platforms//os:macos": ["-Wl,-undefined,dynamic_lookup"],
"//conditions:default": [],
}}),
visibility = ["//visibility:public"],
)
py_runtime(
name = "py3_runtime",
interpreter_path = "{interpreter_path}",
python_version = "PY3",
)
py_runtime_pair(
name = "runtime_pair",
py3_runtime = ":py3_runtime",
)
toolchain(
name = "python_toolchain",
toolchain = ":runtime_pair",
toolchain_type = "@rules_python//python:toolchain_type",
)
'''
_GET_PYTHON_INCLUDE_DIR = """
import sys
from distutils.sysconfig import get_python_inc
sys.stdout.write(get_python_inc())
""".strip()
_GET_PYTHON_SOABI = """
import os
from packaging import tags
tag = next(iter(tags.sys_tags()))
env_key = "PY_PLATFORM_OVERRIDE"
print(f'PY_TAGS = struct(interpreter = "{tag.interpreter}", abi = "{tag.abi}", platform = "{os.environ.get(env_key, tag.platform)}")')
""".strip()
def _python_repo_impl(repository_ctx):
"""Creates external/<reponame>/BUILD, a python3 symlink, and other files."""
python3 = repository_ctx.which("python3")
repository_ctx.file("BUILD", _BUILD_FILE.format(interpreter_path = python3))
result = repository_ctx.execute(["python3", "-c", _GET_PYTHON_INCLUDE_DIR])
if result.return_code:
fail("Failed to run local Python interpreter: %s" % result.stderr)
repository_ctx.symlink(result.stdout, "python3")
result = repository_ctx.execute(["python3", "-c", _GET_PYTHON_SOABI])
if result.return_code:
fail("Failed to run local Python interpreter: %s" % result.stderr)
repository_ctx.file("defs.bzl", result.stdout)
python_repo = repository_rule(
implementation = _python_repo_impl,
configure = True,
local = True,
)