summary refs log tree commit diff
path: root/pkgs/development/python-modules/slackclient/default.nix
blob: 71163a2f11f6bae0ca938966ea2fbcaa4229fe3c (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
{ stdenv, buildPythonPackage, fetchFromGitHub, websocket_client, requests, six, pytest, codecov, coverage, mock, pytestcov, pytest-mock, responses, flake8 }:

buildPythonPackage rec {
  pname = "python-slackclient";
  version = "1.2.1";

  src = fetchFromGitHub {
    owner  = "slackapi";
    repo   = pname;
    rev    = "${version}";
    sha256 = "073fwf6fm2sqdp5ms3vm1v3ljh0pldi69k048404rp6iy3cfwkp0";
  };

  propagatedBuildInputs = [ websocket_client requests six ];

  checkInputs = [ pytest codecov coverage mock pytestcov pytest-mock responses flake8 ];
  # test_server.py fails because it needs connection (I think);
  checkPhase = ''
    py.test --cov-report= --cov=slackclient tests --ignore=tests/test_server.py
  '';

  meta = with stdenv.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; [ psyanticy ];
  };
}