$OpenBSD: patch-setup_py,v 1.1 2017/12/20 12:48:02 landry Exp $

don't depend on buildbot to avoid a circular dependency
Index: setup.py
--- setup.py.orig
+++ setup.py
@@ -22,7 +22,6 @@ from __future__ import print_function
 try:
     from buildbot_pkg import setup_www_plugin
     import mock  # noqa
-    import buildbot  # noqa
 except ImportError:
     import sys
     print("Please install buildbot, buildbot_pkg, and mock modules in order to install that package, or use the pre-build .whl modules available on pypi", file=sys.stderr)
@@ -33,7 +32,7 @@ setup_www_plugin(
     description='Buildbot UI',
     author=u'Pierre Tardy',
     author_email=u'tardyp@gmail.com',
-    setup_requires=['buildbot', 'buildbot_pkg', 'mock'],
+    setup_requires=['buildbot_pkg', 'mock'],
     url='http://buildbot.net/',
     license='GNU GPL',
     packages=['buildbot_www'],
