about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/asyncio-mqtt/default.nix
blob: 8274f5493967a2d3dd565a62769bc6f3ae844559 (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
{ lib
, anyio
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
, typing-extensions
, wheel
}:

buildPythonPackage rec {
  pname = "asyncio-mqtt";
  version = "0.16.1";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "sbtinstruments";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-f3JqocjOEwNjo6Uv17ij6oEdrjb6Z2wTzdhdVhx46iM=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;

  nativeBuildInputs = [
    setuptools
    setuptools-scm
    wheel
  ];

  propagatedBuildInputs = [
    paho-mqtt
  ] ++ lib.optionals (pythonOlder "3.10") [
    typing-extensions
  ];

  nativeCheckInputs = [
    anyio
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "asyncio_mqtt"
  ];

  disabledTests = [
    # Tests require network access
    "test_client_filtered_messages"
    "test_client_logger"
    "test_client_max_concurrent_outgoing_calls"
    "test_client_no_pending_calls_warnings_with_max_concurrent_outgoing_calls"
    "test_client_pending_calls_threshold"
    "test_client_tls_context"
    "test_client_tls_params"
    "test_client_unfiltered_messages"
    "test_client_unsubscribe"
    "test_client_username_password "
    "test_client_websockets"
    "test_client_will"
    "test_multiple_messages_generators"
  ];

  meta = with lib; {
    description = "Idomatic asyncio wrapper around paho-mqtt";
    homepage = "https://github.com/sbtinstruments/asyncio-mqtt";
    license = licenses.bsd3;
    changelog = "https://github.com/sbtinstruments/asyncio-mqtt/blob/v${version}/CHANGELOG.md";
    maintainers = with maintainers; [ hexa ];
  };
}