Merge pull request #333447 from dotlambda/python3Packages.aioboto3
python312Packages.aioboto3: 12.3.0 -> 13.1.1
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioboto3";
|
||||
version = "12.3.0";
|
||||
version = "13.1.1";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
@@ -27,31 +27,33 @@ buildPythonPackage rec {
|
||||
owner = "terrycain";
|
||||
repo = "aioboto3";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-GDuxy/V+j0LRJ2lbcRHMEAga+pdCbYIWhEt3ItrHMB4=";
|
||||
hash = "sha256-g86RKQxTcfG1CIH3gfgn9Vl9JxUkeC1ztmLk4q/MVn0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
build-system = [
|
||||
poetry-core
|
||||
poetry-dynamic-versioning
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [ "aiobotocore" ];
|
||||
|
||||
propagatedBuildInputs = [ aiobotocore ] ++ aiobotocore.optional-dependencies.boto3;
|
||||
dependencies = [
|
||||
aiobotocore
|
||||
aiofiles
|
||||
] ++ aiobotocore.optional-dependencies.boto3;
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
optional-dependencies = {
|
||||
chalice = [ chalice ];
|
||||
s3cse = [ cryptography ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
aiofiles
|
||||
dill
|
||||
moto
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
requests
|
||||
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
|
||||
] ++ lib.flatten (builtins.attrValues optional-dependencies);
|
||||
|
||||
pythonImportsCheck = [ "aioboto3" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user