mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-08 18:51:37 -05:00
Merge pull request #1027 from Lunarequest/master
Add overrides for hikari and hikari-lightbulb
This commit is contained in:
commit
132b5fa0c3
1 changed files with 12 additions and 0 deletions
|
@ -788,6 +788,18 @@ lib.composeManyExtensions [
|
|||
}
|
||||
);
|
||||
|
||||
hikari = super.hikari.overrideAttrs (
|
||||
old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
||||
}
|
||||
);
|
||||
|
||||
hikari-lightbulb = super.hikari-lightbulb.overrideAttrs (
|
||||
old: {
|
||||
buildInputs = (old.buildInputs or [ ]) ++ [ self.setuptools ];
|
||||
}
|
||||
);
|
||||
|
||||
horovod = super.horovod.overridePythonAttrs (
|
||||
old: {
|
||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.mpi ];
|
||||
|
|
Loading…
Add table
Reference in a new issue