Merge pull request #1027 from Lunarequest/master

Add overrides for hikari and hikari-lightbulb
This commit is contained in:
adisbladis 2023-03-06 09:59:52 +13:00 committed by GitHub
commit 132b5fa0c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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