python313Packages.aiowebdav2: init at 0.3.1
This commit is contained in:
committed by
Martin Weinelt
parent
4888b63ff8
commit
35fadddcd4
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user