depot/third_party/nixpkgs/pkgs/development/python-modules/aioboto3/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

77 lines
1.6 KiB
Nix

{
lib,
aiobotocore,
aiofiles,
buildPythonPackage,
chalice,
cryptography,
dill,
fetchFromGitHub,
moto,
poetry-core,
poetry-dynamic-versioning,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
requests,
}:
buildPythonPackage rec {
pname = "aioboto3";
version = "13.1.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "terrycain";
repo = "aioboto3";
rev = "refs/tags/v${version}";
hash = "sha256-g86RKQxTcfG1CIH3gfgn9Vl9JxUkeC1ztmLk4q/MVn0=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
pythonRelaxDeps = [ "aiobotocore" ];
dependencies = [
aiobotocore
aiofiles
] ++ aiobotocore.optional-dependencies.boto3;
optional-dependencies = {
chalice = [ chalice ];
s3cse = [ cryptography ];
};
nativeCheckInputs = [
dill
moto
pytest-asyncio
pytestCheckHook
requests
] ++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "aioboto3" ];
disabledTests = [
# Our moto package is not ready to support more tests
"encrypt_decrypt_aes_cbc"
"test_chalice_async"
"test_dynamo"
"test_flush_doesnt_reset_item_buffer"
"test_kms"
"test_s3"
];
meta = with lib; {
description = "Wrapper to use boto3 resources with the aiobotocore async backend";
homepage = "https://github.com/terrycain/aioboto3";
changelog = "https://github.com/terrycain/aioboto3/blob/${src.rev}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ mbalatsko ];
};
}