1 { buildPythonPackage, fetchPypi, isPy27, lib, dateutil, lxml, requests
4 buildPythonPackage rec {
5 pname = "webdavclient3";
11 inherit pname version;
12 sha256 = "0yw3n5m70ysjn1ch48znpn4zr4a1bd0lsm7q2grqz7q5hfjzjwk0";
15 propagatedBuildInputs = [ dateutil lxml requests ];
17 checkInputs = [ pytestCheckHook ];
19 # disable tests completely, as most of them fail due to urllib3 not being able to establish a http connection
22 pythonImportsCheck = [ "webdav3.client" ];
25 description = "Easy to use WebDAV Client for Python 3.x";
26 homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3";
27 license = licenses.mit;
28 maintainers = with maintainers; [ dmrauh ];