13 buildPythonPackage rec {
14 pname = "notifications-android-tv";
17 disabled = pythonOlder "3.10";
19 src = fetchFromGitHub {
21 repo = "notifications_android_tv";
22 rev = "refs/tags/${version}";
23 hash = "sha256-JUvxxVCiQtywAWU5AYnPm4SueIWIXkzLxPYveVXpc2E=";
26 nativeBuildInputs = [ poetry-core ];
28 propagatedBuildInputs = [ httpx ];
30 pythonImportsCheck = [ "notifications_android_tv" ];
32 nativeCheckInputs = [ pytestCheckHook ];
40 description = "Python API for sending notifications to Android/Fire TVs";
41 homepage = "https://github.com/engrbm87/notifications_android_tv";
42 changelog = "https://github.com/engrbm87/notifications_android_tv/blob/${version}/CHANGES.rst";
43 license = licenses.mit;
44 maintainers = with maintainers; [ dominikh ];