python313Packages.aiowebdav2: init at 0.3.1

This commit is contained in:
Robert Schütz
2025-03-05 23:03:31 +01:00
committed by Martin Weinelt
parent 4888b63ff8
commit 35fadddcd4
2 changed files with 57 additions and 0 deletions
@@ -0,0 +1,55 @@
{
aiofiles,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
lib,
lxml,
poetry-core,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
python-dateutil,
yarl,
}:
buildPythonPackage rec {
pname = "aiowebdav2";
version = "0.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "jpbede";
repo = "aiowebdav2";
tag = "v${version}";
hash = "sha256-421c/3UYq/xtv5Zm4j2dje1KH2HOvPrVlmfMA4NX4pA=";
};
build-system = [ poetry-core ];
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 ];
};
}
+2
View File
@@ -487,6 +487,8 @@ self: super: with self; {
aioweenect = callPackage ../development/python-modules/aioweenect { };
aiowebdav2 = callPackage ../development/python-modules/aiowebdav2 { };
aiowebostv = callPackage ../development/python-modules/aiowebostv { };
aiowmi = callPackage ../development/python-modules/aiowmi { };