about summary refs log tree commit diff
path: root/pkgs/development/python-modules/msrest/default.nix
blob: 5b01bf17d328ad0ea8d52f02f1cd252292c3c8fa (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
  lib,
  aiodns,
  aiohttp,
  azure-core,
  buildPythonPackage,
  certifi,
  fetchFromGitHub,
  httpretty,
  isodate,
  pytest-aiohttp,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
  requests,
  requests-oauthlib,
  setuptools,
  trio,
}:

buildPythonPackage rec {
  pname = "msrest";
  version = "0.7.1";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "Azure";
    repo = "msrest-for-python";
    # no tag for 0.7.1
    rev = "2d8fd04f68a124d0f3df7b81584accc3270b1afc";
    hash = "sha256-1EXXXflhDeU+erdI+NsWxSX76ooDTl3+MyQwRzm2xV0=";
  };

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [
    azure-core
    aiodns
    aiohttp
    certifi
    isodate
    requests
    requests-oauthlib
  ];

  nativeCheckInputs = [
    httpretty
    pytest-aiohttp
    pytestCheckHook
    trio
  ];

  disabledTests =
    [
      # Test require network access
      "test_basic_aiohttp"
      "test_basic_aiohttp"
      "test_basic_async_requests"
      "test_basic_async_requests"
      "test_conf_async_requests"
      "test_conf_async_requests"
      "test_conf_async_trio_requests"
    ]
    ++ lib.optionals (pythonAtLeast "3.12") [
      # AttributeError: 'TestAuthentication' object has no attribute...
      "test_apikey_auth"
      "test_cs_auth"
      "test_eventgrid_auth"
      "test_eventgrid_domain_auth"
    ];

  pythonImportsCheck = [ "msrest" ];

  meta = with lib; {
    description = "Runtime library for AutoRest generated Python clients";
    homepage = "https://github.com/Azure/msrest-for-python";
    license = licenses.mit;
    maintainers = with maintainers; [
      bendlas
      jonringer
      maxwilson
    ];
  };
}