diff --git a/cmake/multipython/PyDependences.cmake b/cmake/multipython/PyDependences.cmake
index 6f9a1f8ab3584a5f9e9a9c88279cd45839377bcc..21ecb80b74ecc1ee8e92c3c5e072f5bb9fb4e96c 100644
--- a/cmake/multipython/PyDependences.cmake
+++ b/cmake/multipython/PyDependences.cmake
@@ -11,9 +11,13 @@ else(BA_PY_PLATFORM)
 endif(BA_PY_PLATFORM)
 
 set(pyversion ${Python3_VERSION_MAJOR}.${Python3_VERSION_MINOR})
+set(pydst "${destination_root}python/${pyversion}")
 set(destination_python
-    "${destination_prefix}lib/python${pyversion}/dist-packages")
+    "${pydst}/dist-packages/")
+set(destination_pypackage ${pydst}/wheel)
+
 message(STATUS "Python destination directory: ${destination_python}")
+message(STATUS "Python package destination directory: ${destination_pypackage}")
 
 # check presence of some Python modules
 message(STATUS "Searching required Python packages...")