2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
|
|
|
|
, stdenv
|
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, pythonOlder
|
2024-01-13 08:15:51 +00:00
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, substituteAll
|
|
|
|
|
, llhttp
|
2023-05-24 13:37:59 +00:00
|
|
|
|
# build_requires
|
2024-01-13 08:15:51 +00:00
|
|
|
|
, cython
|
2023-05-24 13:37:59 +00:00
|
|
|
|
, setuptools
|
2021-12-06 16:07:01 +00:00
|
|
|
|
# install_requires
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, attrs
|
2021-03-19 17:17:44 +00:00
|
|
|
|
, multidict
|
2021-12-06 16:07:01 +00:00
|
|
|
|
, async-timeout
|
2021-03-19 17:17:44 +00:00
|
|
|
|
, yarl
|
2021-12-06 16:07:01 +00:00
|
|
|
|
, frozenlist
|
|
|
|
|
, aiosignal
|
|
|
|
|
, aiodns
|
|
|
|
|
, brotli
|
|
|
|
|
# tests_require
|
2024-02-29 20:09:43 +00:00
|
|
|
|
, freezegun
|
2021-03-19 17:17:44 +00:00
|
|
|
|
, gunicorn
|
|
|
|
|
, pytest-mock
|
|
|
|
|
, pytestCheckHook
|
2024-01-13 08:15:51 +00:00
|
|
|
|
, python-on-whales
|
2020-12-07 07:45:13 +00:00
|
|
|
|
, re-assert
|
2021-03-19 17:17:44 +00:00
|
|
|
|
, trustme
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "aiohttp";
|
2024-02-29 20:09:43 +00:00
|
|
|
|
version = "3.9.3";
|
2024-01-13 08:15:51 +00:00
|
|
|
|
pyproject = true;
|
2023-01-20 10:41:00 +00:00
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
|
disabled = pythonOlder "3.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "aio-libs";
|
|
|
|
|
repo = "aiohttp";
|
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
|
hash = "sha256-dEeMHruFJ1o0J6VUJcpUk7LhEC8sV8hUKXoKcd618lE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
|
patches = [
|
2024-01-13 08:15:51 +00:00
|
|
|
|
(substituteAll {
|
|
|
|
|
src = ./unvendor-llhttp.patch;
|
|
|
|
|
llhttpDev = lib.getDev llhttp;
|
|
|
|
|
llhttpLib = lib.getLib llhttp;
|
2023-08-04 22:07:22 +00:00
|
|
|
|
})
|
2023-03-04 12:14:45 +00:00
|
|
|
|
];
|
|
|
|
|
|
2021-03-19 17:17:44 +00:00
|
|
|
|
postPatch = ''
|
2021-12-06 16:07:01 +00:00
|
|
|
|
sed -i '/--cov/d' setup.cfg
|
2024-01-13 08:15:51 +00:00
|
|
|
|
|
|
|
|
|
rm -r vendor
|
|
|
|
|
patchShebangs tools
|
|
|
|
|
touch .git # tools/gen.py uses .git to find the project root
|
2021-03-19 17:17:44 +00:00
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
|
nativeBuildInputs = [
|
2024-01-13 08:15:51 +00:00
|
|
|
|
cython
|
2023-05-24 13:37:59 +00:00
|
|
|
|
setuptools
|
|
|
|
|
];
|
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
|
preBuild = ''
|
|
|
|
|
make cythonize
|
|
|
|
|
'';
|
|
|
|
|
|
2020-12-07 07:45:13 +00:00
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
attrs
|
|
|
|
|
multidict
|
2021-12-06 16:07:01 +00:00
|
|
|
|
async-timeout
|
2020-12-07 07:45:13 +00:00
|
|
|
|
yarl
|
2021-12-06 16:07:01 +00:00
|
|
|
|
frozenlist
|
|
|
|
|
aiosignal
|
|
|
|
|
aiodns
|
|
|
|
|
brotli
|
2020-12-07 07:45:13 +00:00
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
|
# NOTE: pytest-xdist cannot be added because it is flaky. See https://github.com/NixOS/nixpkgs/issues/230597 for more info.
|
2023-02-02 18:25:31 +00:00
|
|
|
|
nativeCheckInputs = [
|
2024-02-29 20:09:43 +00:00
|
|
|
|
freezegun
|
2021-03-19 17:17:44 +00:00
|
|
|
|
gunicorn
|
|
|
|
|
pytest-mock
|
|
|
|
|
pytestCheckHook
|
2024-01-13 08:15:51 +00:00
|
|
|
|
python-on-whales
|
2021-03-19 17:17:44 +00:00
|
|
|
|
re-assert
|
2022-06-16 17:23:12 +00:00
|
|
|
|
] ++ lib.optionals (!(stdenv.isDarwin && stdenv.isAarch64)) [
|
|
|
|
|
# Optional test dependency. Depends indirectly on pyopenssl, which is
|
|
|
|
|
# broken on aarch64-darwin.
|
2021-03-19 17:17:44 +00:00
|
|
|
|
trustme
|
|
|
|
|
];
|
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
|
disabledTests = [
|
2021-03-19 17:17:44 +00:00
|
|
|
|
# Disable tests that require network access
|
2021-12-06 16:07:01 +00:00
|
|
|
|
"test_client_session_timeout_zero"
|
2020-12-07 07:45:13 +00:00
|
|
|
|
"test_mark_formdata_as_processed"
|
2021-12-06 16:07:01 +00:00
|
|
|
|
"test_requote_redirect_url_default"
|
2022-04-15 01:41:22 +00:00
|
|
|
|
# Disable tests that trigger deprecation warnings in pytest
|
|
|
|
|
"test_async_with_session"
|
|
|
|
|
"test_session_close_awaitable"
|
|
|
|
|
"test_close_run_until_complete_not_deprecated"
|
2023-08-10 07:59:29 +00:00
|
|
|
|
# https://github.com/aio-libs/aiohttp/issues/7130
|
|
|
|
|
"test_static_file_if_none_match"
|
|
|
|
|
"test_static_file_if_match"
|
|
|
|
|
"test_static_file_if_modified_since_past_date"
|
2024-01-13 08:15:51 +00:00
|
|
|
|
# don't run benchmarks
|
|
|
|
|
"test_import_time"
|
2020-06-18 07:06:33 +00:00
|
|
|
|
] ++ lib.optionals stdenv.is32bit [
|
|
|
|
|
"test_cookiejar"
|
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2021-03-19 17:17:44 +00:00
|
|
|
|
"test_addresses" # https://github.com/aio-libs/aiohttp/issues/3572, remove >= v4.0.0
|
2020-06-18 07:06:33 +00:00
|
|
|
|
"test_close"
|
|
|
|
|
];
|
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
|
disabledTestPaths = [
|
2024-01-13 08:15:51 +00:00
|
|
|
|
"tests/test_proxy_functional.py" # FIXME package proxy.py
|
2021-12-06 16:07:01 +00:00
|
|
|
|
];
|
|
|
|
|
|
2021-03-19 17:17:44 +00:00
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
|
# aiohttp in current folder shadows installed version
|
|
|
|
|
preCheck = ''
|
2024-01-13 08:15:51 +00:00
|
|
|
|
rm -r aiohttp
|
|
|
|
|
touch tests/data.unknown_mime_type # has to be modified after 1 Jan 1990
|
2022-03-30 09:31:56 +00:00
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
|
# Work around "OSError: AF_UNIX path too long"
|
|
|
|
|
export TMPDIR="/tmp"
|
2023-04-29 16:46:19 +00:00
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-03-15 16:39:30 +00:00
|
|
|
|
changelog = "https://github.com/aio-libs/aiohttp/blob/v${version}/CHANGES.rst";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Asynchronous HTTP Client/Server for Python and asyncio";
|
|
|
|
|
license = licenses.asl20;
|
|
|
|
|
homepage = "https://github.com/aio-libs/aiohttp";
|
|
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
|
};
|
|
|
|
|
}
|