| "rules_mypy demo" |
| |
| module( |
| name = "rules_mypy_examples__demo", |
| version = "0.0.0", |
| ) |
| |
| bazel_dep(name = "bazel_skylib", version = "1.4.1") |
| bazel_dep(name = "buildifier_prebuilt", version = "7.3.1") |
| bazel_dep(name = "platforms", version = "0.0.8") |
| bazel_dep(name = "rules_mypy", version = "0.0.0") |
| bazel_dep(name = "rules_python", version = "0.34.0") |
| bazel_dep(name = "rules_uv", version = "0.21.0") |
| |
| local_path_override( |
| module_name = "rules_mypy", |
| path = "../..", |
| ) |
| |
| # configuration |
| PYTHON_VERSION = "3.12" |
| |
| PYTHON_VERSION_SNAKE = PYTHON_VERSION.replace(".", "_") |
| |
| python = use_extension("@rules_python//python/extensions:python.bzl", "python") |
| python.toolchain(python_version = PYTHON_VERSION) |
| use_repo(python, "python_" + PYTHON_VERSION_SNAKE, "python_versions") |
| |
| pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip") |
| pip.parse( |
| enable_implicit_namespace_pkgs = True, |
| experimental_index_url = "https://pypi.org/simple", # use Bazel downloader |
| hub_name = "pip", |
| python_version = PYTHON_VERSION, |
| requirements_by_platform = { |
| "//:requirements.txt": "*", |
| }, |
| ) |
| use_repo(pip, "pip") |
| |
| types = use_extension("@rules_mypy//mypy:types.bzl", "types") |
| types.requirements( |
| name = "pip_types", |
| pip_requirements = "@pip//:requirements.bzl", |
| requirements_txt = "//:requirements.txt", |
| ) |
| use_repo(types, "pip_types") |