mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
pythonPackages.exchangelib: 1.12.2 -> 3.2.1
Also marks the package as no longer broken. Obsoletes PR #95313
This commit is contained in:
parent
48dfc9fa97
commit
00c4808252
@ -1,33 +1,38 @@
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage,
|
||||
lxml, tzlocal, python-dateutil, pygments, future, requests-kerberos,
|
||||
pythonOlder,
|
||||
lxml, tzlocal, python-dateutil, pygments, requests-kerberos,
|
||||
defusedxml, cached-property, isodate, requests_ntlm, dnspython,
|
||||
psutil, requests-mock, pyyaml
|
||||
psutil, requests-mock, pyyaml,
|
||||
oauthlib, requests_oauthlib,
|
||||
flake8,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "exchangelib";
|
||||
version = "1.12.2";
|
||||
version = "3.2.1";
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
# tests are not present in the PyPI version
|
||||
src = fetchFromGitHub {
|
||||
owner = "ecederstrand";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1p24fq6f46j0qd0ccb64mncxbnm2n9w0sqpl4zk113caaaxkpjil";
|
||||
sha256 = "1sh780q2iwdm3bnlnfdacracf0n7jhbv0g39cdx65v3d510zp4jv";
|
||||
};
|
||||
|
||||
# one test is failing due to it trying to send a request to example.com
|
||||
patches = [ ./skip_failing_test.patch ];
|
||||
checkInputs = [ psutil requests-mock pyyaml ];
|
||||
checkInputs = [ psutil requests-mock pyyaml
|
||||
flake8
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
lxml tzlocal python-dateutil pygments requests-kerberos
|
||||
future defusedxml cached-property isodate requests_ntlm dnspython ];
|
||||
defusedxml cached-property isodate requests_ntlm dnspython
|
||||
oauthlib requests_oauthlib
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Client for Microsoft Exchange Web Services (EWS)";
|
||||
homepage = "https://github.com/ecederstrand/exchangelib";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ catern ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user