I would like to build a Conda package for my project. However, there is one package that is on pip-only (not uploaded to Conda channel). How to include pip only package when using conda-build command?
I tried using Conda skeleton to build a package from PyPI URL but it doesn't work because the file on PyPI site is a .whl file instead of a tar.gz file like in the conda skeleton tutorial. How should I solve this problem?
This is the error I got for when running the conda build.
conda_build.exceptions.DependencyNeedsBuildingError: Unsatisfiable dependencies for platform osx-64: {'plaidml'}
and for skeleton build for plaidml package by using conda skeleton pypi plaidml-keras
Error: No source urls found for plaidml-keras
Is there a good practice of how to include the pip only package when building conda package?