{ lib , aiohttp , aresponses , buildPythonPackage , fetchFromGitHub , poetry-core , pylint , pytest-aiohttp , pytest-asyncio , pytestCheckHook , pythonOlder }: buildPythonPackage rec { pname = "pytile"; version = "2022.02.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "bachya"; repo = pname; rev = version; sha256 = "sha256-IGjM9yU/3EjO9sV1ZZUX7RUL/a6CcMPzANhVMTcbZGU="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ aiohttp pylint ]; checkInputs = [ aresponses pytest-aiohttp pytest-asyncio pytestCheckHook ]; disabledTestPaths = [ # Ignore the examples as they are prefixed with test_ "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 ]; }; }