Files
mongo/buildscripts/bazel_rules_mongo/utils/BUILD.bazel
Andrew Bradshaw f4644578e0 SERVER-120217 Update to using rules python (#48943)
GitOrigin-RevId: 4684e8f134d1fff534747129566fed89a4f96528
2026-03-06 01:52:51 +00:00

15 lines
364 B
Python

load("@poetry//:dependencies.bzl", "dependency")
load("@rules_python//python:defs.bzl", "py_binary", "py_library", "py_test")
exports_files(["evergreen_git.py"])
py_library(
name = "evergreen_git",
srcs = ["evergreen_git.py"],
visibility = ["//visibility:public"],
deps = [
dependency("pyyaml"),
dependency("gitpython"),
],
)