Skip to content

Commit 6ac3a90

Browse files
authored
Merge pull request NixOS#333447 from dotlambda/python3Packages.aioboto3
python312Packages.aioboto3: 12.3.0 -> 13.1.1
2 parents ab23487 + e785420 commit 6ac3a90

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

pkgs/development/python-modules/aioboto3/default.nix

+9-7
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
buildPythonPackage rec {
2020
pname = "aioboto3";
21-
version = "12.3.0";
21+
version = "13.1.1";
2222
pyproject = true;
2323

2424
disabled = pythonOlder "3.8";
@@ -27,31 +27,33 @@ buildPythonPackage rec {
2727
owner = "terrycain";
2828
repo = "aioboto3";
2929
rev = "refs/tags/v${version}";
30-
hash = "sha256-GDuxy/V+j0LRJ2lbcRHMEAga+pdCbYIWhEt3ItrHMB4=";
30+
hash = "sha256-g86RKQxTcfG1CIH3gfgn9Vl9JxUkeC1ztmLk4q/MVn0=";
3131
};
3232

33-
nativeBuildInputs = [
33+
build-system = [
3434
poetry-core
3535
poetry-dynamic-versioning
3636
];
3737

3838
pythonRelaxDeps = [ "aiobotocore" ];
3939

40-
propagatedBuildInputs = [ aiobotocore ] ++ aiobotocore.optional-dependencies.boto3;
40+
dependencies = [
41+
aiobotocore
42+
aiofiles
43+
] ++ aiobotocore.optional-dependencies.boto3;
4144

42-
passthru.optional-dependencies = {
45+
optional-dependencies = {
4346
chalice = [ chalice ];
4447
s3cse = [ cryptography ];
4548
};
4649

4750
nativeCheckInputs = [
48-
aiofiles
4951
dill
5052
moto
5153
pytest-asyncio
5254
pytestCheckHook
5355
requests
54-
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
56+
] ++ lib.flatten (builtins.attrValues optional-dependencies);
5557

5658
pythonImportsCheck = [ "aioboto3" ];
5759

0 commit comments

Comments
 (0)