{ aiofiles, aiohttp, aioresponses, buildPythonPackage, fetchFromGitHub, hatchling, lib, lxml, pyprojectVersionPatchHook, pytest-asyncio, pytest-cov-stub, pytestCheckHook, python-dateutil, yarl, }: buildPythonPackage rec { pname = "aiowebdav2"; version = "0.6.2"; pyproject = true; src = fetchFromGitHub { owner = "jpbede"; repo = "aiowebdav2"; tag = "v${version}"; hash = "sha256-W3TdumweNyGz2qDFgSGu+ZPnEpLvWQQ216jER6e4k18="; }; nativeBuildInputs = [ pyprojectVersionPatchHook ]; build-system = [ hatchling ]; dependencies = [ aiofiles aiohttp lxml python-dateutil yarl ]; pythonImportsCheck = [ "aiowebdav2" ]; nativeCheckInputs = [ aioresponses pytest-asyncio pytest-cov-stub pytestCheckHook ]; meta = { changelog = "https://github.com/jpbede/aiowebdav2/releases/tag/${src.tag}"; description = "Async Python 3 client for WebDAV"; homepage = "https://github.com/jpbede/aiowebdav2"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ dotlambda ]; }; }