Nextcord Forgets to State setuptools as dep
This commit is contained in:
15
flake.nix
15
flake.nix
@@ -45,7 +45,20 @@ DOC
|
|||||||
};
|
};
|
||||||
|
|
||||||
packages = {
|
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;
|
default = self.packages.${system}.handyhelper;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user