Read mesh from gmsh with prism elements in FEniCS

I would like to import a 3D gmsh mesh into FEniCS, composed of prisms. The .geo code for the mesh generation is:

SetFactory("OpenCASCADE");
Lbox = 100;
Hbox = 100;

Wref = 12;
size_el = 1.5;
n_pts_big = Lbox/size_el + 1.;
n_pts_small = Wref/size_el + 1.;

Rectangle(1) = {0, 0, 45, Lbox, Hbox};

Transfinite Curve {:} = n_pts_big Using Progression 1;
Transfinite Surface {1} Alternate;

Extrude {0, 0, Wref} {
   Surface{:}; Layers{n_pts_small}; Recombine;
}

Here is a snapshot of the mesh:

Is it possible to convert this mesh into a format readable by FEniCS? (2019.2.0.dev0)

Legacy FEniCS has no support for prisms.

DOLFINx has limited support for prisms, ref: Add pyramid and prism cells by tiagovla · Pull Request #2427 · FEniCS/dolfinx · GitHub
Prism cell mesh by chrisrichardson · Pull Request #1707 · FEniCS/dolfinx · GitHub