Hi,
I’m trying to create a nix package using poetryx2nix.
But when I’m trying to build, there is a modulenotfound error caused by "hatchling’.
I tried to include hatching in buildInput but it doesn’t solves the problem.
Here is my default.nix (really short)
{ lib, poetry2nix, hatchling, hatch }:
poetry2nix.mkPoetryApplication {
projectDir = ./.;
buildInputs = [ hatchling hatch ];
}
Logs and pyproject.toml are here : url
Thanks !!