Nextcord Forgets to State setuptools as dep

This commit is contained in:
2023-03-15 23:32:13 -04:00
parent 510759a005
commit 71f114a59e

View File

@@ -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;
};