Make subunit2sql install depend on netifaces

In order to make sure pip installation of subunit2sql does not
attempt to pip install (and subsequently build from sdist)
netifaces, set a dependency ensuring the distro package for
python-netifaces is installed before that.

Change-Id: I01118c2771aa4e4fa553fb04b4a0885bf977a738
This commit is contained in:
Jeremy Stanley 2017-10-29 12:43:21 +00:00
parent 7e35c0b223
commit 69150752a0
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ class subunit2sql (
require => [
Class['pip'],
Package['python-mysqldb'],
Package['python-psycopg2']
Package['python-psycopg2'],
Package['python-netifaces']
],
}