diff --git a/flake.nix b/flake.nix index 8883870..12d1120 100644 --- a/flake.nix +++ b/flake.nix @@ -45,7 +45,20 @@ DOC }; packages = { - handyhelper = mkPoetryApplication { projectDir = self; }; + handyhelper = mkPoetryApplication { + projectDir = self; + overrides = poetry2nix.defaultPoetryOverrides.extent + (self: super: { + nextcord = super.nextcord.overridePythonAttrs + ( + old: { + propagatedBuildInputs = ( + old.propagatedBuildInputs or [] + ) ++ [super.setuptools]; + } + ); + }); + }; default = self.packages.${system}.handyhelper; };