ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / samsungtvws / default.nix
blob2e97bae92b6a72c86b7f6e21b991c3124b39206c
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , isPy27
6 # propagates:
7 , requests
8 , websocket-client
10 # extras: async
11 , aiohttp
12 , websockets
14 # extras: encrypted
15 , cryptography
16 , py3rijndael
18 # tests
19 , aioresponses
20 , pytest-asyncio
21 , pytestCheckHook
24 buildPythonPackage rec {
25   pname = "samsungtvws";
26   version = "2.5.0";
27   format = "setuptools";
28   disabled = isPy27;
30   src = fetchFromGitHub {
31     owner = "xchwarze";
32     repo = "samsung-tv-ws-api";
33     rev = "v${version}";
34     hash = "sha256-AimG5tyTRBETpivC2BwCuoR4o7y98YT6u5sogJlcmoo=";
35   };
37   propagatedBuildInputs = [
38     requests
39     websocket-client
40   ];
42   passthru.optional-dependencies = {
43     async = [
44       aiohttp
45       websockets
46     ];
47     encrypted = [
48       cryptography
49       py3rijndael
50     ];
51   };
53   checkInputs = [
54     aioresponses
55     pytest-asyncio
56     pytestCheckHook
57   ]
58   ++ passthru.optional-dependencies.async
59   ++ passthru.optional-dependencies.encrypted;
61   pythonImportsCheck = [ "samsungtvws" ];
63   meta = with lib; {
64     description = "Samsung Smart TV WS API wrapper";
65     homepage = "https://github.com/xchwarze/samsung-tv-ws-api";
66     license = licenses.mit;
67     maintainers = with maintainers; [ hexa ];
68   };