python3Packages.exchangelib: fix build

This commit is contained in:
Jonathan Ringer 2021-05-08 14:28:06 -07:00 committed by Jonathan Ringer
parent ae33267bab
commit 283a7fe85c

View file

@ -4,7 +4,7 @@
defusedxml, cached-property, isodate, requests_ntlm, dnspython, defusedxml, cached-property, isodate, requests_ntlm, dnspython,
psutil, requests-mock, pyyaml, psutil, requests-mock, pyyaml,
oauthlib, requests_oauthlib, tzdata, oauthlib, requests_oauthlib, tzdata,
flake8, flake8, backports-zoneinfo
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -27,6 +27,8 @@ buildPythonPackage rec {
lxml tzlocal tzdata python-dateutil pygments requests-kerberos lxml tzlocal tzdata python-dateutil pygments requests-kerberos
defusedxml cached-property isodate requests_ntlm dnspython defusedxml cached-property isodate requests_ntlm dnspython
oauthlib requests_oauthlib oauthlib requests_oauthlib
] ++ lib.optionals (pythonOlder "3.9") [
backports-zoneinfo
]; ];
meta = with lib; { meta = with lib; {