push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,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 ];
};
}