forked from mirrors/nixpkgs
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, buildPythonPackage,
|
|
pythonOlder,
|
|
lxml, tzlocal, python-dateutil, pygments, requests-kerberos,
|
|
defusedxml, cached-property, isodate, requests_ntlm, dnspython,
|
|
psutil, requests-mock, pyyaml,
|
|
oauthlib, requests_oauthlib,
|
|
flake8,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "exchangelib";
|
|
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 = "1sh780q2iwdm3bnlnfdacracf0n7jhbv0g39cdx65v3d510zp4jv";
|
|
};
|
|
|
|
checkInputs = [ psutil requests-mock pyyaml
|
|
flake8
|
|
];
|
|
propagatedBuildInputs = [
|
|
lxml tzlocal python-dateutil pygments requests-kerberos
|
|
defusedxml cached-property isodate requests_ntlm dnspython
|
|
oauthlib requests_oauthlib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Client for Microsoft Exchange Web Services (EWS)";
|
|
homepage = "https://github.com/ecederstrand/exchangelib";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ catern ];
|
|
};
|
|
}
|