about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiocoap/default.nix
blob: 5aff82034bcc35c6d4c07b9c090b7df104a42d4f (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
87
88
89
90
91
92
93
{
  lib,
  buildPythonPackage,
  cbor-diag,
  cbor2,
  cryptography,
  dtlssocket,
  fetchFromGitHub,
  filelock,
  ge25519,
  pygments,
  pytestCheckHook,
  pythonAtLeast,
  pythonOlder,
  setuptools,
  termcolor,
  websockets,
}:

buildPythonPackage rec {
  pname = "aiocoap";
  version = "0.4.8";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "chrysn";
    repo = "aiocoap";
    rev = "refs/tags/${version}";
    hash = "sha256-jBRxorHr5/CgAR6WVXBUycZpJ6n1DYVFQk6kqVv8D1Q=";
  };

  build-system = [ setuptools ];

  passthru.optional-dependencies = {
    oscore = [
      cbor2
      cryptography
      filelock
      ge25519
    ];
    tinydtls = [ dtlssocket ];
    ws = [ websockets ];
    prettyprint = [
      termcolor
      cbor2
      pygments
      cbor-diag
    ];
  };

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTestPaths = [
    # Don't test the plugins
    "tests/test_tls.py"
    "tests/test_reverseproxy.py"
    "tests/test_oscore_plugtest.py"
  ];

  disabledTests =
    [
      # Communication is not properly mocked
      "test_uri_parser"
    ]
    ++ lib.optionals (pythonAtLeast "3.12") [
      # https://github.com/chrysn/aiocoap/issues/339
      "TestServerTCP::test_big_resource"
      "TestServerTCP::test_empty_accept"
      "TestServerTCP::test_error_resources"
      "TestServerTCP::test_fast_resource"
      "TestServerTCP::test_js_accept"
      "TestServerTCP::test_manualbig_resource"
      "TestServerTCP::test_nonexisting_resource"
      "TestServerTCP::test_replacing_resource"
      "TestServerTCP::test_root_resource"
      "TestServerTCP::test_slow_resource"
      "TestServerTCP::test_slowbig_resource"
      "TestServerTCP::test_spurious_resource"
      "TestServerTCP::test_unacceptable_accept"
    ];

  pythonImportsCheck = [ "aiocoap" ];

  meta = with lib; {
    description = "Python CoAP library";
    homepage = "https://aiocoap.readthedocs.io/";
    changelog = "https://github.com/chrysn/aiocoap/blob/${version}/NEWS";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}