Skip to content

Commit

Permalink
home-assistant: update pytest-aiohttp and related overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Mar 14, 2022
1 parent 0ed928e commit 94790aa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/servers/home-assistant/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,21 @@ let
version = "0.3.0";
src = oldAttrs.src.override {
inherit version;
sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
hash = "sha256-ySmFQzljeXc3WDhwO2L+9jUoWYvAqdRRY566lfSqpE8=";
};
propagatedBuildInputs = with python3.pkgs; [ aiohttp pytest ];

This comment has been minimized.

Copy link
@dotlambda

dotlambda Mar 17, 2022

Member

@mweinelt This should be self.pkgs.

doCheck = false;
patches = [];
});
aiohomekit = super.aiohomekit.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires aiohttp>=1.0.0
});
hass-nabucasa = super.hass-nabucasa.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires aiohttp>=1.0.0
});
snitun = super.snitun.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires aiohttp>=1.0.0
});
zwave-js-server-python = super.zwave-js-server-python.overridePythonAttrs (oldAttrs: {
doCheck = false; # requires aiohttp>=1.0.0
});
Expand Down

0 comments on commit 94790aa

Please sign in to comment.