diff --git a/doc/changelog.rst b/doc/changelog.rst
index 6a83bdeb4c5b4dcd2d33b4719399b361e38d564a..865e15db20848086b9fb80abb6b6c1bf7534e9e8 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -11,6 +11,7 @@ unreleased
     - fix :issue:`46` with a change in dask groupby mean behavior :mr:`174`
     - fix :issue:`47` SLURM script not using the correct kernel :mr:`176`
     - fix :issue:`51` make sure that BAM units are in ps :mr:`183`
+    - fix :issue:`50` and :issue:`54` relating to package dependencies
 
 - **Improvements**
 
diff --git a/setup.py b/setup.py
index 9310d8ed3ac996b87eb8eecce86eb90aeeb2ed41..dfe172d71e2a556476112d116797231de3c5022a 100644
--- a/setup.py
+++ b/setup.py
@@ -12,8 +12,9 @@ basic_analysis_reqs = ['numpy', 'scipy',]  # and is readily available in Karabo
 advanced_analysis_reqs = [
     'pandas', 'imageio', 'xarray>=0.13.0', 'psutil', 'h5py', 'h5netcdf',]
 interactive_reqs = ['ipykernel', 'matplotlib', 'tqdm',]
-maxwell_reqs = ['joblib', 'papermill', 'dask',
-                'extra_data', 'euxfel_bunch_pattern>=0.6']
+maxwell_reqs = ['joblib', 'papermill', 'dask[diagnostics]',
+                'extra_data', 'extra_geom', 'euxfel_bunch_pattern>=0.6',
+                'pyFAI',]
 docs_reqs = ['sphinx', 'nbsphinx']
 
 setup(name='toolbox_scs',