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