summaryrefslogtreecommitdiff
path: root/bundler/depcollector.py
diff options
context:
space:
mode:
Diffstat (limited to 'bundler/depcollector.py')
-rw-r--r--bundler/depcollector.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bundler/depcollector.py b/bundler/depcollector.py
index bb0ed5f..c6bb197 100644
--- a/bundler/depcollector.py
+++ b/bundler/depcollector.py
@@ -41,6 +41,7 @@ def collect_deps(root, dest_lib_dir, path_file):
mg.import_hook("tuf")
mg.import_hook("timeit")
mg.import_hook("daemon") # for leap/bitmask/util/polkit_agent.py
+ mg.import_hook("functools32") # jsonschema dep
# this import ensures the inclusion of the 'service-identity' dependency
# since we don't import it implicitly anywhere
@@ -58,7 +59,7 @@ def collect_deps(root, dest_lib_dir, path_file):
for (name, pkg) in sorted_pkg:
# skip namespace packages
- if name in ("leap", "leap.soledad", "google", "zope") or \
+ if name in ("leap", "leap.soledad", "google", "zope", "repoze") or \
name.endswith("leap/bitmask/app.py"):
continue