1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00
samba-mirror/lib/wscript_build

22 lines
551 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
import os
# work out what python external libraries we need to install
external_libs = {
"dns.resolver": "dnspython/dns",
"subunit": "subunit/python/subunit",
"testtools": "testtools/testtools"}
list = []
for module, package in external_libs.iteritems():
try:
__import__(module)
except ImportError:
list.append(package)
for e in list:
bld.INSTALL_WILDCARD('${PYTHONDIR}/samba/external', e + '/**/*', flat=False,
exclude='*.pyc', trim_path=os.path.dirname(e))