1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 httpx,
6 poetry-core,
7 pytest-asyncio,
8 pytest-httpx,
9 pytestCheckHook,
10 pythonOlder,
11}:
12
13buildPythonPackage rec {
14 pname = "notifications-android-tv";
15 version = "1.0.0";
16 format = "pyproject";
17 disabled = pythonOlder "3.8";
18
19 src = fetchFromGitHub {
20 owner = "engrbm87";
21 repo = "notifications_android_tv";
22 rev = version;
23 hash = "sha256-Xr+d2uYzgFp/Fb00ymov02+GYnwjGc3FbJ/rIvQXzCE=";
24 };
25
26 nativeBuildInputs = [ poetry-core ];
27
28 propagatedBuildInputs = [ httpx ];
29
30 pythonImportsCheck = [ "notifications_android_tv" ];
31
32 nativeCheckInputs = [ pytestCheckHook ];
33
34 checkInputs = [
35 pytest-asyncio
36 pytest-httpx
37 ];
38
39 meta = with lib; {
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 ];
45 };
46}