home-assistant: Pin notifications-android-tv at 0.1.5

This commit is contained in:
Martin Weinelt 2023-04-09 23:20:37 +02:00
parent 4580a38fec
commit 80e27c13d9
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -114,6 +114,28 @@ let
doCheck = false;
});
notifications-android-tv = super.notifications-android-tv.overridePythonAttrs (oldAttrs: rec {
version = "0.1.5";
format = "setuptools";
src = fetchFromGitHub {
owner = "engrbm87";
repo = "notifications_android_tv";
rev = "refs/tags/${version}";
hash = "sha256-adkcUuPl0jdJjkBINCTW4Kmc16C/HzL+jaRZB/Qr09A=";
};
nativeBuildInputs = with super; [
setuptools
];
propagatedBuildInputs = with super; [
requests
];
doCheck = false; # no tests
});
# Pinned due to API changes in 1.3.0
ovoenergy = super.ovoenergy.overridePythonAttrs (oldAttrs: rec {
version = "1.2.0";