summary refs log tree commit diff
path: root/pkgs/development/python-modules/exchangelib/default.nix
blob: ed2a7d69da895043d279042bf123ad9fa930beed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ 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;
  };
}