Point/line plot overlay on Pandas violin plot

I was wondering if it possible to superpose a line plot on violin plots

To create violin plots I am using:

fig = FF.create_violin(df, data_header='Value', group_header='Group',
                       height=500, width=800)
py.iplot(fig, filename='Violins')