Avoid infinite recursion caused by poetry2nix.cleanPythonSources

This commit is contained in:
TSR Berry 2024-03-09 02:22:49 +01:00
parent 7c4bf15c93
commit 77fb8f402a
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -19,7 +19,10 @@
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix { inherit pkgs; };
in {
ryuko-ng = with final;
poetry2nix.mkPoetryApplication rec { projectDir = self; };
poetry2nix.mkPoetryApplication rec {
projectDir = self;
src = projectDir;
};
};
in flake-utils.lib.eachDefaultSystem (system:
let