Avoid infinite recursion caused by poetry2nix.cleanPythonSources
This commit is contained in:
parent
7c4bf15c93
commit
77fb8f402a
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@
|
||||||
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix { inherit pkgs; };
|
poetry2nix = inputs.poetry2nix.lib.mkPoetry2Nix { inherit pkgs; };
|
||||||
in {
|
in {
|
||||||
ryuko-ng = with final;
|
ryuko-ng = with final;
|
||||||
poetry2nix.mkPoetryApplication rec { projectDir = self; };
|
poetry2nix.mkPoetryApplication rec {
|
||||||
|
projectDir = self;
|
||||||
|
src = projectDir;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
in flake-utils.lib.eachDefaultSystem (system:
|
in flake-utils.lib.eachDefaultSystem (system:
|
||||||
let
|
let
|
||||||
|
|
Loading…
Reference in a new issue