depot/third_party/nixpkgs/pkgs/development/python-modules/webdavclient3/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

44 lines
934 B
Nix

{
buildPythonPackage,
fetchPypi,
isPy27,
lib,
python-dateutil,
lxml,
requests,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "webdavclient3";
version = "3.14.6";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "bcd22586bb0d58abc26ca56054fd04228e704bd36073c3080f4597c1556c880d";
};
propagatedBuildInputs = [
python-dateutil
lxml
requests
];
nativeCheckInputs = [ pytestCheckHook ];
# disable tests completely, as most of them fail due to urllib3 not being able to establish a http connection
doCheck = false;
pythonImportsCheck = [ "webdav3.client" ];
meta = with lib; {
description = "Easy to use WebDAV Client for Python 3.x";
mainProgram = "wdc";
homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3";
license = licenses.mit;
maintainers = with maintainers; [ dmrauh ];
};
}