90 lines
1.8 KiB
Nix
90 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
cheroot,
|
|
colorama,
|
|
fetchFromGitHub,
|
|
fsspec,
|
|
hatch-vcs,
|
|
hatchling,
|
|
httpx,
|
|
pytest-xdist,
|
|
pytestCheckHook,
|
|
pytest-cov-stub,
|
|
python-dateutil,
|
|
pythonOlder,
|
|
wsgidav,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "webdav4";
|
|
version = "0.10.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "skshetry";
|
|
repo = "webdav4";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-LgWYgERRuUODFzUnC08kDJTVRx9vanJ+OU8sREEMVwM=";
|
|
};
|
|
|
|
build-system = [
|
|
hatch-vcs
|
|
hatchling
|
|
];
|
|
|
|
dependencies = [
|
|
httpx
|
|
python-dateutil
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
cheroot
|
|
colorama
|
|
pytest-xdist
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
wsgidav
|
|
] ++ optional-dependencies.fsspec;
|
|
|
|
optional-dependencies = {
|
|
fsspec = [ fsspec ];
|
|
http2 = [ httpx.optional-dependencies.http2 ];
|
|
all = [
|
|
fsspec
|
|
httpx.optional-dependencies.http2
|
|
];
|
|
};
|
|
|
|
pythonImportsCheck = [ "webdav4" ];
|
|
|
|
disabledTests = [
|
|
# ValueError: Invalid dir_browser htdocs_path
|
|
"test_retry_reconnect_on_failure"
|
|
"test_open"
|
|
"test_open_binary"
|
|
"test_close_connection_if_nothing_is_read"
|
|
# Assertion error due to comparing output
|
|
"test_cp_cli"
|
|
"test_mv_cli"
|
|
"test_sync_remote_to_local"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Tests requires network access
|
|
"tests/test_client.py"
|
|
"tests/test_fsspec.py"
|
|
"tests/test_cli.py"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Library for interacting with WebDAV";
|
|
mainProgram = "dav";
|
|
homepage = "https://skshetry.github.io/webdav4/";
|
|
changelog = "https://github.com/skshetry/webdav4/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|