depot/third_party/nixpkgs/pkgs/development/python-modules/rokuecp/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

77 lines
1.6 KiB
Nix

{
lib,
aiohttp,
aresponses,
awesomeversion,
backoff,
buildPythonPackage,
cachetools,
fetchFromGitHub,
poetry-core,
pytest-asyncio,
pytest-freezegun,
pytestCheckHook,
pythonOlder,
xmltodict,
yarl,
}:
buildPythonPackage rec {
pname = "rokuecp";
version = "0.19.4";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "ctalkington";
repo = "python-rokuecp";
rev = "refs/tags/${version}";
hash = "sha256-GotVSRSMdbAtDmVEXNizf5Pf/02sva1R/6ULL6h7ciY=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.0.0"' 'version = "${version}"' \
--replace-fail "--cov" ""
'';
build-system = [ poetry-core ];
dependencies = [
aiohttp
backoff
cachetools
xmltodict
awesomeversion
yarl
];
nativeCheckInputs = [
aresponses
pytest-asyncio
pytest-freezegun
pytestCheckHook
];
disabledTests = [
# Network related tests are having troube in the sandbox
"test_resolve_hostname"
"test_get_dns_state"
# Assertion issue
"test_guess_stream_format"
"test_update_tv"
"test_get_apps_single_app"
"test_get_tv_channels_single_channel"
];
pythonImportsCheck = [ "rokuecp" ];
meta = with lib; {
description = "Asynchronous Python client for Roku (ECP)";
homepage = "https://github.com/ctalkington/python-rokuecp";
changelog = "https://github.com/ctalkington/python-rokuecp/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}