summary refs log tree commit diff
path: root/pkgs/development/python-modules/slackclient/default.nix
blob: c82eba66acaee1be054f9978c6d7f34f269cf08c (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{ lib
, aiohttp
, buildPythonPackage
, codecov
, fetchFromGitHub
, flake8
, isPy3k
, mock
, psutil
, pytest-cov
, pytest-mock
, pytestCheckHook
, pytest-runner
, requests
, responses
, six
, websocket-client
}:

buildPythonPackage rec {
  pname = "slackclient";
  version = "2.9.3";

  disabled = !isPy3k;

  src = fetchFromGitHub {
    owner = "slackapi";
    repo = "python-slack-sdk";
    rev = "v${version}";
    sha256 = "1rfb7izgddv28ag37gdnv3sd8z2zysrxs7ad8x20x690zshpaq16";
  };

  propagatedBuildInputs = [
    aiohttp
    websocket-client
    requests
    six
  ];

  checkInputs = [
    codecov
    flake8
    mock
    psutil
    pytest-cov
    pytest-mock
    pytestCheckHook
    pytest-runner
    responses
  ];

  # Exclude tests that requires network features
  pytestFlagsArray = [ "--ignore=integration_tests" ];
  disabledTests = [ "test_start_raises_an_error_if_rtm_ws_url_is_not_returned" ];

  pythonImportsCheck = [ "slack" ];

  meta = with lib; {
    description = "A client for Slack, which supports the Slack Web API and Real Time Messaging (RTM) API";
    homepage = "https://github.com/slackapi/python-slackclient";
    license = licenses.mit;
    maintainers = with maintainers; [ flokli psyanticy ];
  };
}