summaryrefslogtreecommitdiff
path: root/source4/scripting/python/samba_external/missing.py
blob: 082afd839715cdca97e2ce1d9adc68ea76a8546b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python

# work out what python external libraries we need to install

external_libs = {
    "dns.resolver": "dnspython", 
    "subunit": "subunit",
    "testtools": "testtools"}

list = []

for module, package in external_libs.iteritems():
    try:
        __import__(module)
    except ImportError:
        list.append(package)

print ' '.join(list)