69 lines
1.3 KiB
Nix
69 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isPy27,
|
|
|
|
# propagates:
|
|
requests,
|
|
websocket-client,
|
|
|
|
# extras: async
|
|
aiohttp,
|
|
websockets,
|
|
|
|
# extras: encrypted
|
|
cryptography,
|
|
py3rijndael,
|
|
|
|
# tests
|
|
aioresponses,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "samsungtvws";
|
|
version = "2.6.0";
|
|
format = "setuptools";
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xchwarze";
|
|
repo = "samsung-tv-ws-api";
|
|
rev = "v${version}";
|
|
hash = "sha256-mkjfimzu7paz+ZskartL052AfUBtL1xU0eOlrHgD1UE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
websocket-client
|
|
];
|
|
|
|
optional-dependencies = {
|
|
async = [
|
|
aiohttp
|
|
websockets
|
|
];
|
|
encrypted = [
|
|
cryptography
|
|
py3rijndael
|
|
];
|
|
};
|
|
|
|
nativeCheckInputs = [
|
|
aioresponses
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
] ++ optional-dependencies.async ++ optional-dependencies.encrypted;
|
|
|
|
pythonImportsCheck = [ "samsungtvws" ];
|
|
|
|
meta = with lib; {
|
|
description = "Samsung Smart TV WS API wrapper";
|
|
homepage = "https://github.com/xchwarze/samsung-tv-ws-api";
|
|
changelog = "https://github.com/xchwarze/samsung-tv-ws-api/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|