nixpkgs/pkgs/development/python-modules/aiohttp/default.nix

167 lines
3.4 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
replaceVars,
isPy310,
isPyPy,
# build-system
cython_3_1,
pkgconfig,
setuptools,
# native dependencies
llhttp,
# dependencies
aiohappyeyeballs,
aiosignal,
async-timeout,
attrs,
frozenlist,
multidict,
propcache,
yarl,
# optional dependencies
aiodns,
brotli,
brotlicffi,
# tests
blockbuster,
freezegun,
gunicorn,
isal,
proxy-py,
pytest-codspeed,
pytest-cov-stub,
pytest-mock,
pytest-xdist,
pytestCheckHook,
python-on-whales,
re-assert,
trustme,
zlib-ng,
}:
buildPythonPackage rec {
pname = "aiohttp";
version = "3.12.10";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiohttp";
tag = "v${version}";
hash = "sha256-ciZGOOfVXYoLzYNIkota3MXMRMxlztf+mFFo0y9r+Lk=";
};
postPatch = ''
rm -r vendor
patchShebangs tools
touch .git # tools/gen.py uses .git to find the project root
# don't install Cython using pip
substituteInPlace Makefile \
--replace-fail "cythonize: .install-cython" "cythonize:"
'';
build-system = [
cython_3_1
pkgconfig
setuptools
];
preBuild = ''
make cythonize
'';
buildInputs = [
llhttp
];
env.AIOHTTP_USE_SYSTEM_DEPS = true;
dependencies = [
aiohappyeyeballs
aiosignal
async-timeout
attrs
frozenlist
multidict
propcache
yarl
] ++ optional-dependencies.speedups;
optional-dependencies.speedups = [
aiodns
(if isPyPy then brotlicffi else brotli)
];
nativeCheckInputs = [
blockbuster
freezegun
gunicorn
isal
proxy-py
pytest-codspeed
pytest-cov-stub
pytest-mock
pytest-xdist
pytestCheckHook
python-on-whales
re-assert
trustme
zlib-ng
];
disabledTests =
[
# Disable tests that require network access
"test_client_session_timeout_zero"
"test_mark_formdata_as_processed"
"test_requote_redirect_url_default"
# don't run benchmarks
"test_import_time"
# racy
"test_uvloop_secure_https_proxy"
# Cannot connect to host example.com:443 ssl:default [Could not contact DNS servers]
"test_tcp_connector_ssl_shutdown_timeout_passed_to_create_connection"
]
# these tests fail with python310 but succeeds with 11+
++ lib.optionals isPy310 [
"test_https_proxy_unsupported_tls_in_tls"
"test_tcp_connector_raise_connector_ssl_error"
]
++ lib.optionals stdenv.hostPlatform.is32bit [ "test_cookiejar" ]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"test_addresses" # https://github.com/aio-libs/aiohttp/issues/3572, remove >= v4.0.0
"test_close"
];
__darwinAllowLocalNetworking = true;
preCheck =
''
# aiohttp in current folder shadows installed version
rm -r aiohttp
touch tests/data.unknown_mime_type # has to be modified after 1 Jan 1990
export HOME=$(mktemp -d)
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
# Work around "OSError: AF_UNIX path too long"
export TMPDIR="/tmp"
'';
meta = with lib; {
changelog = "https://docs.aiohttp.org/en/${src.tag}/changes.html";
description = "Asynchronous HTTP Client/Server for Python and asyncio";
license = licenses.asl20;
homepage = "https://github.com/aio-libs/aiohttp";
maintainers = with maintainers; [ dotlambda ];
};
}