We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37dad89 commit bf09dc6Copy full SHA for bf09dc6
README.md
@@ -6,13 +6,23 @@ Contains Bazel rules to fetch and install Python dependencies from a requirement
6
7
In `requirements.txt`
8
```
9
-cryptography[test, docs]
10
-boto3
+cryptography[test, docs]==2.8
+boto3==1.9.253
11
12
13
In `WORKSPACE`
14
15
-load("@rules_pip//:defs.bzl", "pip_repository")
+rules_python_external_version = "37dad8910495ad71bae391db7a843a0f7a3ea902"
16
+
17
+git_repository(
18
+ name = "rules_python_external",
19
+ commit = rules_python_external_version,
20
+ remote = "[email protected]:dillon-giacoppo/rules_python_external.git",
21
+ shallow_since = "1572846707 +1100",
22
+)
23
24
25
+load("@rules_python_external//:defs.bzl", "pip_repository")
26
27
pip_repository(
28
name = "py_deps",
0 commit comments