about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aioboto3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aioboto3/default.nix')
-rw-r--r--pkgs/development/python-modules/aioboto3/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/aioboto3/default.nix b/pkgs/development/python-modules/aioboto3/default.nix
index 96a7cc9c4d741..ce5194a937ebe 100644
--- a/pkgs/development/python-modules/aioboto3/default.nix
+++ b/pkgs/development/python-modules/aioboto3/default.nix
@@ -13,13 +13,12 @@
   pytest-asyncio,
   pytestCheckHook,
   pythonOlder,
-  pythonRelaxDepsHook,
   requests,
 }:
 
 buildPythonPackage rec {
   pname = "aioboto3";
-  version = "12.3.0";
+  version = "13.1.1";
   pyproject = true;
 
   disabled = pythonOlder "3.8";
@@ -28,32 +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
-    pythonRelaxDepsHook
   ];
 
   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" ];