home-assistant: pin aioesphomeapi to 7.0.0
Relevant comment in the bump of aioesphomeapi: https://github.com/NixOS/nixpkgs/pull/135669#issuecomment-912177954
This commit is contained in:
parent
73204fed4b
commit
d72603b5ea
1 changed files with 13 additions and 0 deletions
|
@ -112,6 +112,19 @@ let
|
||||||
(self: super: {
|
(self: super: {
|
||||||
home-assistant-frontend = self.callPackage ./frontend.nix { };
|
home-assistant-frontend = self.callPackage ./frontend.nix { };
|
||||||
})
|
})
|
||||||
|
|
||||||
|
# Pinned due to incompability with aioesphomeapi 8.0.0
|
||||||
|
(self: super: {
|
||||||
|
aioesphomeapi = super.aioesphomeapi.overrideAttrs (oldAttrs: rec {
|
||||||
|
version = "7.0.0";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "esphome";
|
||||||
|
repo = oldAttrs.pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-ho/1fpq4yAgmYNERPqs51oqr08ncaN9+GRTUUuGU7ps=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
mkOverride = attrname: version: sha256:
|
mkOverride = attrname: version: sha256:
|
||||||
|
|
Loading…
Reference in a new issue