Bug Report from www.isc.org: Name: Andreas Hasenack Email: andreas@canonical.com Software Version: 9.11.2.P1 OS: Ubuntu Linux Subject:Missing python3-ply dependency in setup.py Bug Detail =========== The bin/python/setup.py file is not declaring the dependency the isc python modules have on the python3-ply package. For linux disttributions that package bind9, this results in a bind9utils package that lacks the python3-ply dependency and in non-working scripts. I believe this is enough to fix it: --- a/bin/python/setup.py +++ b/bin/python/setup.py @@ -14,4 +14,5 @@ author='Internet Systems Consortium, Inc', author_email='bind9-bugs@isc.org', license='ISC', + requires=['ply'], packages=['isc']) --- This email was received through isc.org Bug Submission Form