From 77fb8f402af061f2779e6b43f1d7b40cd5f56750 Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 9 Mar 2024 02:22:49 +0100 Subject: [PATCH] Avoid infinite recursion caused by poetry2nix.cleanPythonSources --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index d03acdc..010704c 100644 --- a/flake.nix +++ b/flake.nix @@ -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