16 lines
531 B
Nix
16 lines
531 B
Nix
{ ... }:
|
|
final: prev: {
|
|
home-assistant = prev.home-assistant.override {
|
|
packageOverrides = _self: super: {
|
|
psnawp = super.psnawp.overridePythonAttrs (old: {
|
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ super.pythonRelaxDepsHook ];
|
|
pythonRelaxDeps = [ "pycountry" ];
|
|
});
|
|
radios = super.radios.overridePythonAttrs (old: {
|
|
nativeBuildInputs = (old.nativeBuildInputs or [ ]) ++ [ super.pythonRelaxDepsHook ];
|
|
pythonRelaxDeps = [ "pycountry" ];
|
|
});
|
|
};
|
|
};
|
|
}
|