README: Add missing http_archive import (#266)

Currently if you copy and paste the documented workspace methods you get a failure that `http_archive` is not specified: it needs to be imported.

Co-authored-by: lberki <lberki@users.noreply.github.com>
diff --git a/README.md b/README.md
index ae63f0f..e83fdd0 100644
--- a/README.md
+++ b/README.md
@@ -76,6 +76,7 @@
 directly and call its initialization methods as follows:
 
 ```python
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
 http_archive(
     name = "rules_python",
     url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.1/rules_python-0.0.1.tar.gz",