Skip to content

Commit

Permalink
python312Packages.exchangelib: 5.4.3 -> 5.5.0 (#351993)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao authored Nov 12, 2024
2 parents 4d991cf + 0ae1cd1 commit 4203dd2
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions pkgs/development/python-modules/exchangelib/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
{
lib,
backports-zoneinfo,
buildPythonPackage,
cached-property,
defusedxml,
dnspython,
fetchFromGitHub,
flake8,
isodate,
lxml,
oauthlib,
Expand All @@ -20,7 +18,6 @@
requests-ntlm,
requests-gssapi,
requests-oauthlib,
requests-kerberos,
requests-mock,
setuptools,
tzdata,
Expand All @@ -29,16 +26,16 @@

buildPythonPackage rec {
pname = "exchangelib";
version = "5.4.3";
version = "5.5.0";
pyproject = true;

disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";

src = fetchFromGitHub {
owner = "ecederstrand";
repo = "exchangelib";
rev = "refs/tags/v${version}";
hash = "sha256-SX5F0OXKdxA2HoDwvCe4M7RftdjUEdQuFbxRyuABC4E=";
hash = "sha256-nu1uhsUc4NhVE08RtaD8h6KL6DFzA8mPcCJ/cX2UYME=";
};

pythonRelaxDeps = [ "defusedxml" ];
Expand All @@ -56,10 +53,9 @@ buildPythonPackage rec {
requests
requests-ntlm
requests-oauthlib
requests-kerberos
tzdata
tzlocal
] ++ lib.optionals (pythonOlder "3.9") [ backports-zoneinfo ];
];

optional-dependencies = {
complete = [
Expand All @@ -73,7 +69,6 @@ buildPythonPackage rec {
};

nativeCheckInputs = [
flake8
psutil
python-dateutil
pytz
Expand Down

0 comments on commit 4203dd2

Please sign in to comment.