home-assistant: pin backoff before 2.0 bump

This commit is contained in:
Martin Weinelt 2022-07-21 14:07:40 +02:00
parent 3024c0bfde
commit 845b062e86

View File

@ -30,6 +30,18 @@ let
defaultOverrides = [
# Override the version of some packages pinned in Home Assistant's setup.py and requirements_all.txt
(self: super: {
backoff = super.backoff.overridePythonAttrs (oldAttrs: rec {
version = "1.11.1";
src = fetchFromGitHub {
owner = "litl";
repo = "backoff";
rev = "v${version}";
hash = "sha256-87IMcLaoCn0Vns8Ub/AFmv0gXtS0aPZX0cSt7+lOPm4=";
};
});
})
(self: super: {
bsblan = super.bsblan.overridePythonAttrs (oldAttrs: rec {
version = "0.5.0";