Files
nixpkgs/pkgs/development/python-modules/anyio/default.nix
T
Martin Weinelt b79da2786f Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/python-modules/bundlewrap/default.nix
	pkgs/development/python-modules/coverage/default.nix
	pkgs/development/python-modules/h5netcdf/default.nix
	pkgs/development/python-modules/hypothesis/default.nix
	pkgs/development/python-modules/numba/default.nix
	pkgs/development/python-modules/optype/default.nix
	pkgs/development/python-modules/setuptools-git-versioning/default.nix
	pkgs/development/python-modules/sphinx/default.nix
2026-02-15 16:17:41 +01:00

131 lines
2.8 KiB
Nix

{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
# build-system
setuptools-scm,
# dependencies
exceptiongroup,
idna,
typing-extensions,
# optionals
trio,
# tests
hypothesis,
psutil,
pytest-mock,
pytest-xdist,
pytestCheckHook,
trustme,
uvloop,
# smoke tests
starlette,
}:
buildPythonPackage rec {
pname = "anyio";
version = "4.12.1";
pyproject = true;
src = fetchFromGitHub {
owner = "agronholm";
repo = "anyio";
tag = version;
hash = "sha256-7rfQ6mwB2sNKc28ZPMZNgVs7TFgBUBzH6xGXmtfzX9k=";
};
build-system = [ setuptools-scm ];
dependencies = [
idna
]
++ lib.optionals (pythonOlder "3.13") [
typing-extensions
];
optional-dependencies = {
trio = [ trio ];
};
nativeCheckInputs = [
exceptiongroup
hypothesis
psutil
pytest-mock
pytest-xdist
pytestCheckHook
trustme
uvloop
]
++ optional-dependencies.trio;
pytestFlags = [
"-Wignore::trio.TrioDeprecationWarning"
# DeprecationWarning for asyncio.iscoroutinefunction is propagated from uvloop used internally
# https://github.com/agronholm/anyio/commit/e7bb0bd496b1ae0d1a81b86de72312d52e8135ed
"-Wignore::DeprecationWarning"
];
disabledTestMarks = [
"network"
];
preCheck = lib.optionalString stdenv.hostPlatform.isDarwin ''
# Work around "OSError: AF_UNIX path too long"
export TMPDIR="/tmp"
'';
disabledTests = [
# TypeError: __subprocess_run() got an unexpected keyword argument 'umask'
"test_py39_arguments"
# AttributeError: 'module' object at __main__ has no attribute '__file__'
"test_nonexistent_main_module"
# 3 second timeout expired
"test_keyboardinterrupt_during_test"
# racy with high thread count, see https://github.com/NixOS/nixpkgs/issues/448125
"test_multiple_threads"
# These tests become flaky under heavy load
"test_asyncio_run_sync_called"
"test_handshake_fail"
"test_run_in_custom_limiter"
"test_cancel_from_shielded_scope"
"test_start_task_soon_cancel_later"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# PermissionError: [Errno 1] Operation not permitted: '/dev/console'
"test_is_block_device"
# AssertionError: assert 'wheel' == 'nixbld'
"test_group"
];
disabledTestPaths = [
# lots of DNS lookups
"tests/test_sockets.py"
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "anyio" ];
passthru.tests = {
inherit starlette;
};
meta = {
changelog = "https://github.com/agronholm/anyio/blob/${src.tag}/docs/versionhistory.rst";
description = "High level compatibility layer for multiple asynchronous event loop implementations on Python";
homepage = "https://github.com/agronholm/anyio";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}