home-assistant: pin pylitterbot==2021.2.8

This commit is contained in:
Martin Weinelt 2021-04-08 02:22:48 +02:00
parent 61cf21b1fa
commit 095f8f4c29
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -42,6 +42,21 @@ let
});
})
# Pinned due to API changes in pylilterbot>=2021.3.0
(self: super: {
pylitterbot = super.pylitterbot.overridePythonAttrs (oldAttrs: rec {
version = "2021.2.8";
src = fetchFromGitHub {
owner = "natekspencer";
repo = "pylitterbot";
rev = version;
sha256 = "142lhijm51v11cd0lhcfdnjdd143jxi2hjsrqdq0rrbbnmj6mymp";
};
# had no tests before 2021.3.0
doCheck = false;
});
})
# Pinned due to bug in ring-doorbell 0.7.0
# https://github.com/tchellomello/python-ring-doorbell/issues/240
(mkOverride "ring-doorbell" "0.6.2"