about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pytest-sanic/default.nix
blob: 761f4deed2dc5af359796203e4ae1598dd7eaab0 (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
65
66
67
68
69
70
{ lib
, aiohttp
, async_generator
, buildPythonPackage
, fetchFromGitHub
, httpx
, pytest
, pytestCheckHook
, sanic
, websockets
}:

buildPythonPackage rec {
  pname = "pytest-sanic";
  version = "1.8.1";

  src = fetchFromGitHub {
    owner = "yunstanford";
    repo = pname;
    rev = "v${version}";
    sha256 = "128qxpqilqjhpjzjzzfzsgi4bc0vxwmz0k3xwry6fwhyzcf2bzl5";
  };

  buildInputs = [
    pytest
  ];

  propagatedBuildInputs = [
    aiohttp
    async_generator
    httpx
    pytest
    websockets
  ];

  checkInputs = [
    sanic
    pytestCheckHook
  ];

  postPatch = ''
    # https://github.com/yunstanford/pytest-sanic/issues/55
    substituteInPlace setup.py \
      --replace "websockets>=8.1,<9.0" "websockets>=9.1,<10.0"
  '';

  disabledTests = [
    # https://github.com/yunstanford/pytest-sanic/issues/51
    "test_fixture_sanic_client_get"
    "test_fixture_sanic_client_post"
    "test_fixture_sanic_client_put"
    "test_fixture_sanic_client_delete"
    "test_fixture_sanic_client_patch"
    "test_fixture_sanic_client_options"
    "test_fixture_sanic_client_head"
    "test_fixture_sanic_client_close"
    "test_fixture_sanic_client_passing_headers"
    "test_fixture_sanic_client_context_manager"
    "test_fixture_test_client_context_manager"
  ];

  pythonImportsCheck = [ "pytest_sanic" ];

  meta = with lib; {
    description = "A pytest plugin for Sanic";
    homepage = "https://github.com/yunstanford/pytest-sanic/";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
  };
}