mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
home-assistant: Pin notifications-android-tv at 0.1.5
This commit is contained in:
parent
4580a38fec
commit
80e27c13d9
1 changed files with 22 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue