Custom nomad-lab python package

Hi NOMAD team,

I am trying to setup the development environment as described here to have a more custom oasis with specific plugins and some custom GUI for the future work.

Accessing the code from MPDCF Gitlab is no problem, but following the instruction for creating the docker images fails as there’s the external nomad-lab requirement in the Dockerfile

COPY --from=dev_package /app/dist/nomad-lab-*.tar.gz .
RUN pip install nomad-lab-*.tar.gz

# Install default plugins. TODO: This can be removed once we have a proper
# distribution project.
COPY requirements-plugins.txt .
RUN uv pip install -r requirements-plugins.txt -c requirements.txt

It seems the PyPi nomad-lab v1.2.9 is quite outdated and not maintained anymore and the nomad-lab on MPDCF lacks behind the releases/tags. As the nomad-lab is so fundamental to create, work, and run the oasis, I kindly ask you to give me some advice how I can create my own ‘nomad-lab’ package (also for the static requirement for the GUI). Thanks in advance.