Skip to content

Commit f684759

Browse files
committed
Reapply "add bzl libs"
This reverts commit 05a4612.
1 parent 226344f commit f684759

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

python/private/pypi/BUILD.bazel

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ bzl_library(
7575
name = "evaluate_markers_bzl",
7676
srcs = ["evaluate_markers.bzl"],
7777
deps = [
78-
":pypi_repo_utils_bzl",
78+
":pep508_env_bzl",
79+
":pep508_evaluate_bzl",
80+
":pep508_req_bzl",
7981
],
8082
)
8183

@@ -208,6 +210,33 @@ bzl_library(
208210
],
209211
)
210212

213+
bzl_library(
214+
name = "pep508_evaluate_bzl",
215+
srcs = ["pep508_evaluate.bzl"],
216+
deps = [
217+
"//python/private:enum_bzl",
218+
"//python/private:semver_bzl",
219+
],
220+
)
221+
222+
bzl_library(
223+
name = "pep508_req_bzl",
224+
srcs = ["pep508_req.bzl"],
225+
deps = [
226+
"//python/private:normalize_name_bzl",
227+
],
228+
)
229+
230+
bzl_library(
231+
name = "pep508_env_bzl",
232+
srcs = ["pep508_env.bzl"],
233+
deps = [
234+
":pep508_evaluate_bzl",
235+
":pep508_req_bzl",
236+
"//python/private:normalize_name_bzl",
237+
],
238+
)
239+
211240
bzl_library(
212241
name = "pip_bzl",
213242
srcs = ["pip.bzl"],

0 commit comments

Comments
 (0)