Files
nixpkgs/pkgs/development/python-modules/aiobotocore/default.nix
T
Martin Weinelt 18d9d4fa23 python3Packages.aiobotocore: 2.24.2 -> 3.1.1
https://github.com/aio-libs/aiobotocore/blob/3.1.1/CHANGES.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 16:40:50 +01:00

109 lines
2.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
aiohttp,
aioitertools,
botocore,
python-dateutil,
jmespath,
multidict,
urllib3,
wrapt,
dill,
moto,
pytest-asyncio,
time-machine,
werkzeug,
awscli,
boto3,
httpx,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aiobotocore";
version = "3.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "aio-libs";
repo = "aiobotocore";
tag = version;
hash = "sha256-/Yf2rt/5FH1WiD2VV2hEksM1XleEl4YRBqGQI4GVa8Q=";
};
# Relax version constraints: aiobotocore works with newer botocore versions
# the pinning used to match some `extras_require` we're not using.
pythonRelaxDeps = [ "botocore" ];
build-system = [
setuptools
];
dependencies = [
aiohttp
aioitertools
botocore
python-dateutil
jmespath
multidict
urllib3
wrapt
];
optional-dependencies = {
awscli = [ awscli ];
boto3 = [ boto3 ];
httpx = [ httpx ];
};
nativeCheckInputs = [
dill
moto
pytest-asyncio
time-machine
werkzeug
pytestCheckHook
]
++ moto.optional-dependencies.server;
pythonImportsCheck = [ "aiobotocore" ];
disabledTests = [
# TypeError: sequence item 1: expected str instance, MagicMock found
"test_signers_generate_db_auth_token"
];
disabledTestPaths = [
# Test requires network access
"tests/test_version.py"
"tests/test_basic_s3.py"
"tests/test_batch.py"
"tests/test_dynamodb.py"
"tests/test_ec2.py"
"tests/test_lambda.py"
"tests/test_monitor.py"
"tests/test_patches.py"
"tests/test_sns.py"
"tests/test_sqs.py"
"tests/test_waiter.py"
];
disabledTestMarks = [
# Exclude localonly tests (incompatible with moto mocks)
"localonly"
];
__darwinAllowLocalNetworking = true;
meta = {
description = "Python client for amazon services";
homepage = "https://github.com/aio-libs/aiobotocore";
changelog = "https://github.com/aio-libs/aiobotocore/blob/${src.tag}/CHANGES.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ teh ];
};
}