172445c
--- rpkg-1.54/setup.py.orig	2018-05-21 12:36:09.481898935 +0800
172445c
+++ rpkg-1.54/setup.py	2018-05-21 12:38:27.246778969 +0800
172445c
@@ -46,6 +46,11 @@
172445c
         'unittest2'
172445c
     ]
172445c
 
172445c
+install_requires = [
172445c
+    item for item in install_requires
172445c
+    if not item.startswith('koji') and not item.startswith('rpm-py-installer')
172445c
+]
172445c
+
172445c
 readme_rst = os.path.join(setup_py_path, 'README.rst')
172445c
 with open(readme_rst, 'r') as readme:
172445c
     long_description = readme.read().rstrip()