*: k0.hswaw.net somewhat working
diff --git a/WORKSPACE b/WORKSPACE
index 57fa628..74e276d 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -1,3 +1,25 @@
+# Python rules
+
+load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
+
+git_repository(
+    name = "io_bazel_rules_python",
+    remote = "https://github.com/bazelbuild/rules_python.git",
+    commit = "ebd7adcbcafcc8abe3fd8e5b0e42e10ced1bfe27",
+)
+
+# Python dependencies
+
+load("@io_bazel_rules_python//python:pip.bzl", "pip_import")
+
+pip_import(
+   name = "py_deps",
+   requirements = "//:requirements.txt",
+)
+
+load("@py_deps//:requirements.bzl", "pip_install")
+pip_install()
+
 # Go rules
 
 http_archive(