How to plot a plotly calplot object?

I am aware that matplotlib figures need to be plotted slightly differently in a Holoviz panel than in conventional Python code, but I am not sure how to plot a calplot.

The following code is used to create a calendar heatmap using plotly’s calplot library:

from plotly_calplot import calplot

fig = calplot(df, x="date", y="value")
fig.show()

How would I show the same figure in a Holoviz panel? I will accept a non-interactive plot.

According to the documentation (Calendar heatmaps from Pandas time series data — calplot 0.1.7.5 documentation) calplot returns a “matplotlib Axes” object.