blob: c0821e6504270db9667f381230cb191418fcc605 [file] [log] [blame]
Serge Bazanski194b1c82020-09-25 20:24:17 +00001load("@rules_python//python:defs.bzl", "py_runtime_pair")
2
3# Python3 toolchain definition that uses //third_party/nix:python.nix (via
4# external repository).
5
6py_runtime(
7 name = "py3_runtime",
8 interpreter = "@hscloud_nix_python3//:python3",
9 python_version = "PY3",
10)
11
12py_runtime_pair(
13 name = "py_runtime_pair",
14 py3_runtime = ":py3_runtime",
15)
16
17toolchain(
18 name = "py_toolchain",
19 toolchain = ":py_runtime_pair",
20 toolchain_type = "@rules_python//python:toolchain_type",
21)