mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
131 lines
3.0 KiB
Nix
131 lines
3.0 KiB
Nix
{ lib
|
||
, stdenv
|
||
, buildPythonPackage
|
||
, fetchPypi
|
||
, fetchpatch
|
||
, pythonOlder
|
||
# install_requires
|
||
, attrs
|
||
, charset-normalizer
|
||
, multidict
|
||
, async-timeout
|
||
, yarl
|
||
, frozenlist
|
||
, aiosignal
|
||
, aiodns
|
||
, brotli
|
||
, faust-cchardet
|
||
, asynctest
|
||
, typing-extensions
|
||
, idna-ssl
|
||
# tests_require
|
||
, async_generator
|
||
, freezegun
|
||
, gunicorn
|
||
, pytest-mock
|
||
, pytest-xdist
|
||
, pytestCheckHook
|
||
, re-assert
|
||
, trustme
|
||
}:
|
||
|
||
buildPythonPackage rec {
|
||
pname = "aiohttp";
|
||
version = "3.8.4";
|
||
format = "pyproject";
|
||
|
||
disabled = pythonOlder "3.6";
|
||
|
||
src = fetchPypi {
|
||
inherit pname version;
|
||
hash = "sha256-vy4akWLB5EG/gFof0WbiSdV0ygTgOzT5fikodp6Rq1w=";
|
||
};
|
||
|
||
patches = [
|
||
(fetchpatch {
|
||
# https://github.com/aio-libs/aiohttp/pull/7178
|
||
url = "https://github.com/aio-libs/aiohttp/commit/5718879cdb6a98bf48810a994b78bc02abaf3e07.patch";
|
||
hash = "sha256-4UynkTZOzWzusQ2+MPZszhFA8I/PJNLeT/hHF/fASy8=";
|
||
})
|
||
];
|
||
|
||
postPatch = ''
|
||
sed -i '/--cov/d' setup.cfg
|
||
|
||
substituteInPlace setup.cfg \
|
||
--replace "charset-normalizer >=2.0, < 3.0" "charset-normalizer >=2.0, < 4.0"
|
||
'';
|
||
|
||
propagatedBuildInputs = [
|
||
attrs
|
||
charset-normalizer
|
||
multidict
|
||
async-timeout
|
||
yarl
|
||
typing-extensions
|
||
frozenlist
|
||
aiosignal
|
||
aiodns
|
||
brotli
|
||
faust-cchardet
|
||
] ++ lib.optionals (pythonOlder "3.8") [
|
||
asynctest
|
||
typing-extensions
|
||
] ++ lib.optionals (pythonOlder "3.7") [
|
||
idna-ssl
|
||
];
|
||
|
||
nativeCheckInputs = [
|
||
async_generator
|
||
freezegun
|
||
gunicorn
|
||
pytest-mock
|
||
pytest-xdist
|
||
pytestCheckHook
|
||
re-assert
|
||
] ++ lib.optionals (!(stdenv.isDarwin && stdenv.isAarch64)) [
|
||
# Optional test dependency. Depends indirectly on pyopenssl, which is
|
||
# broken on aarch64-darwin.
|
||
trustme
|
||
];
|
||
|
||
disabledTests = [
|
||
# Disable tests that require network access
|
||
"test_client_session_timeout_zero"
|
||
"test_mark_formdata_as_processed"
|
||
"test_requote_redirect_url_default"
|
||
# Disable tests that trigger deprecation warnings in pytest
|
||
"test_async_with_session"
|
||
"test_session_close_awaitable"
|
||
"test_close_run_until_complete_not_deprecated"
|
||
] ++ lib.optionals stdenv.is32bit [
|
||
"test_cookiejar"
|
||
] ++ lib.optionals stdenv.isDarwin [
|
||
"test_addresses" # https://github.com/aio-libs/aiohttp/issues/3572, remove >= v4.0.0
|
||
"test_close"
|
||
];
|
||
|
||
disabledTestPaths = [
|
||
"test_proxy_functional.py" # FIXME package proxy.py
|
||
];
|
||
|
||
__darwinAllowLocalNetworking = true;
|
||
|
||
# aiohttp in current folder shadows installed version
|
||
# Probably because we run `python -m pytest` instead of `pytest` in the hook.
|
||
preCheck = ''
|
||
cd tests
|
||
'' + lib.optionalString stdenv.isDarwin ''
|
||
# Work around "OSError: AF_UNIX path too long"
|
||
export TMPDIR="/tmp"
|
||
'';
|
||
|
||
meta = with lib; {
|
||
changelog = "https://github.com/aio-libs/aiohttp/blob/v${version}/CHANGES.rst";
|
||
description = "Asynchronous HTTP Client/Server for Python and asyncio";
|
||
license = licenses.asl20;
|
||
homepage = "https://github.com/aio-libs/aiohttp";
|
||
maintainers = with maintainers; [ dotlambda ];
|
||
};
|
||
}
|