mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 03:56:39 -04: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 (
|
horovod = super.horovod.overridePythonAttrs (
|
||||||
old: {
|
old: {
|
||||||
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.mpi ];
|
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.mpi ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue