blob: b69ba513263f6bacb4ee008e80dd05d508db63f3 (
plain)
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
|
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
pyopenssl,
# test
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aioopenssl";
version = "0.6.0";
pyproject = true;
src = fetchFromGitHub {
owner = "horazont";
repo = "aioopenssl";
tag = "v${version}";
hash = "sha256-7Q+4/DlP+kUnC3YNk7woJaxLEEiuVmolUOajepM003Q=";
};
build-system = [ setuptools ];
dependencies = [ pyopenssl ];
pythonImportsCheck = [ "aioopenssl" ];
nativeCheckInputs = [ pytestCheckHook ];
# Tests that fail in when built in the Darwin sandbox.
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# address already in use
"test_renegotiate"
# permission error (tries to bind to port not allowed by sandbox)
"test_abort"
"test_close_during_handshake"
"test_connect_send_recv_close"
"test_data_is_sent_after_handshake"
"test_local_addr"
"test_no_data_is_received_after_handshake"
"test_no_data_is_received_if_handshake_crashes"
"test_no_data_is_sent_if_handshake_crashes"
"test_post_handshake_exception_is_propagated"
"test_recv_large_data"
"test_renegotiation"
"test_send_and_receive_data"
"test_send_large_data"
"test_send_recv_large_data"
"test_starttls"
];
__darwinAlowLocalNetworking = true;
meta = {
description = "TLS-capable transport using OpenSSL for asyncio";
homepage = "https://github.com/horazont/aioopenssl";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
|