{ lib , aiohttp , aresponses , buildPythonPackage , fetchFromGitHub , poetry-core , pylint , pytest-aiohttp , pytest-asyncio , pytestCheckHook , pythonAtLeast }: buildPythonPackage rec { pname = "pytile"; version = "5.2.1"; disabled = pythonAtLeast "3.9"; src = fetchFromGitHub { owner = "bachya"; repo = pname; rev = version; sha256 = "0d63xga4gjlfl9fzv3i4j605rrx2qgbzam6cl609ny96s8q8h1px"; }; format = "pyproject"; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp pylint ]; checkInputs = [ aresponses pytest-aiohttp pytest-asyncio pytestCheckHook ]; # Ignore the examples as they are prefixed with test_ pytestFlagsArray = [ "--ignore examples/" ]; pythonImportsCheck = [ "pytile" ]; __darwinAllowLocalNetworking = true; meta = with lib; { description = " Python API for Tile Bluetooth trackers"; longDescription = '' pytile is a simple Python library for retrieving information on Tile Bluetooth trackers (including last location and more). ''; homepage = "https://github.com/bachya/pytile"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; }