From 71f114a59e346650c65b0be7e53a9dfe83cb4bcd Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Wed, 15 Mar 2023 23:32:13 -0400 Subject: [PATCH] Nextcord Forgets to State setuptools as dep --- flake.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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; };