Using custom wheels from PyPI repository

Hello,

is it possible to install Python wheel packages from an internal PyPI repository in Anaconda Code? I keep getting this error, when adding the URL to the *.whl file:

An error occurred when loading package dependencies. Please try a different installation method, version, or package.

The package has no dependencies on other packages. I can install and use the Wheel locally via PyPI without any issues. Do I need to transform the package to the Conda package format and host it via Anaconda Server?

Thank you

Loading a Python wheel from a URL should work fine with the standard wheel format.

Is it a pure Python wheel? Anaconda Code runs with pyodide, so it can only load pure Python wheels or wheels compiled for wasm32.