5aa4b19946
Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, buildPythonPackage,
|
|
lxml, tzlocal, python-dateutil, pygments, future, requests-kerberos,
|
|
defusedxml, cached-property, isodate, requests_ntlm, dnspython,
|
|
psutil, requests-mock, pyyaml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "exchangelib";
|
|
version = "1.12.2";
|
|
|
|
# tests are not present in the PyPI version
|
|
src = fetchFromGitHub {
|
|
owner = "ecederstrand";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1p24fq6f46j0qd0ccb64mncxbnm2n9w0sqpl4zk113caaaxkpjil";
|
|
};
|
|
|
|
# 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 ];
|
|
propagatedBuildInputs = [
|
|
lxml tzlocal python-dateutil pygments requests-kerberos
|
|
future defusedxml cached-property isodate requests_ntlm dnspython ];
|
|
|
|
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;
|
|
};
|
|
}
|