diff --git a/component/pycurl/buildout.cfg b/component/pycurl/buildout.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..bb75f4ddbc86319bb6fe09a46207a2fc8c368e54
--- /dev/null
+++ b/component/pycurl/buildout.cfg
@@ -0,0 +1,22 @@
+[buildout]
+extends =
+  ../curl/buildout.cfg
+  ../openssl/buildout.cfg
+
+parts =
+  pycurl
+
+[pycurl-env]
+PATH = ${curl:location}/bin:${openssl:location}/bin:%(PATH)s
+PYCURL_SSL_LIBRARY=openssl
+CPPFLAGS=-I${openssl:location}/include
+CFLAGS=-I${openssl:location}/include
+
+[pycurl]
+recipe = zc.recipe.egg:custom
+egg = pycurl
+
+rpath =
+  ${curl:location}/lib/
+  ${openssl:location}/lib/
+environment = pycurl-env