From 926c920c12703883a7e946e9bbebf8d0d00af31a Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Sun, 2 Jul 2023 18:44:28 -0700 Subject: [PATCH 001/420] gcc: tighten condition for inhibit_libc=true The situation described in the comment preceding `export inhibit_libc=true` does not match the conditional which follows it. Specifically, the comment says that this line is meant for "clang builds gcc" situations, yet it is enabled even when `!stdenv.cc.isClang`. This commit tightens the conditional to make it match the situation described in the comment. --- pkgs/development/compilers/gcc/common/pre-configure.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcc/common/pre-configure.nix b/pkgs/development/compilers/gcc/common/pre-configure.nix index e386693b22c7..5a74c5647293 100644 --- a/pkgs/development/compilers/gcc/common/pre-configure.nix +++ b/pkgs/development/compilers/gcc/common/pre-configure.nix @@ -108,7 +108,10 @@ in lib.optionalString (hostPlatform.isSunOS && hostPlatform.is64bit) '' # gcc->clang "cross"-compilation manages to evade it: there # hostPlatform != targetPlatform, hostPlatform.config == targetPlatform.config. # We explicitly inhibit libc headers use in this case as well. -+ lib.optionalString (targetPlatform != hostPlatform && withoutTargetLibc) '' ++ lib.optionalString (targetPlatform != hostPlatform && + withoutTargetLibc && + targetPlatform.config == hostPlatform.config && + (stdenv.cc.isClang || stdenv.targetPlatform.useLLVM)) '' export inhibit_libc=true '' From 05d054f25b361db1d11ce4fb62a0e57c1f0cccd4 Mon Sep 17 00:00:00 2001 From: Martino Fontana Date: Sun, 3 Sep 2023 14:34:37 +0200 Subject: [PATCH 002/420] ludusavi: 0.20.0 -> 0.21.0 Diff: https://github.com/mtkennerly/ludusavi/compare/v0.20.0...v0.21.0 Changelog: https://github.com/mtkennerly/ludusavi/blob/v0.21.0/CHANGELOG.md --- pkgs/applications/backup/ludusavi/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/backup/ludusavi/default.nix b/pkgs/applications/backup/ludusavi/default.nix index efe99f845531..f6abbf346c6d 100644 --- a/pkgs/applications/backup/ludusavi/default.nix +++ b/pkgs/applications/backup/ludusavi/default.nix @@ -12,22 +12,23 @@ , libXcursor , libXrandr , libXi +, vulkan-loader , gnome , libsForQt5 }: rustPlatform.buildRustPackage rec { pname = "ludusavi"; - version = "0.20.0"; + version = "0.21.0"; src = fetchFromGitHub { owner = "mtkennerly"; repo = pname; rev = "v${version}"; - hash = "sha256-6wwBXgR0jutkM3L7Ihi4qryuOeBRItQTyKn2lNcvfdQ="; + hash = "sha256-eEuaDMfFxWcNM9+5TvZZXLgbDuGbyIAIuzEMVWbvYbg="; }; - cargoSha256 = "sha256-9ksstWNqc2Rq5fdb4/LLHGMUXQgri9BAo2LlkFl3Irg="; + cargoSha256 = "sha256-ENo562Y6K238NNEtgYoPw6EXjbcuxPuXiftIp/bGYYU="; nativeBuildInputs = [ cmake @@ -67,6 +68,7 @@ rustPlatform.buildRustPackage rec { libXcursor libXrandr libXi + vulkan-loader ]; in '' From dc1d9bc1b97fce2026c17a8be6553a0cb8397c3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Silva?= Date: Sun, 24 Sep 2023 22:53:41 +0100 Subject: [PATCH 003/420] framesh: 0.6.7 -> 0.6.8 --- pkgs/applications/blockchains/framesh/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/blockchains/framesh/default.nix b/pkgs/applications/blockchains/framesh/default.nix index 28a25d8d5c89..68eaf2a1adff 100644 --- a/pkgs/applications/blockchains/framesh/default.nix +++ b/pkgs/applications/blockchains/framesh/default.nix @@ -1,11 +1,11 @@ -{ lib, fetchurl, appimageTools }: +{ lib, fetchurl, appimageTools, makeWrapper }: let pname = "framesh"; - version = "0.6.7"; + version = "0.6.8"; src = fetchurl { url = "https://github.com/floating/frame/releases/download/v${version}/Frame-${version}.AppImage"; - sha256 = "sha256-yPNgrC9ZQcl1gCStMXMbZvk15jZylM2NgKM9H3XcJVQ="; + hash = "sha256-qTbT1g+9hypBUxRMZ/Eat5OGb1y6yJlxQ6iJzfQH8G4="; }; appimageContents = appimageTools.extractType2 { @@ -20,6 +20,11 @@ appimageTools.wrapType2 { install -m 444 -D ${appimageContents}/frame.desktop $out/share/applications/frame.desktop install -m 444 -D ${appimageContents}/frame.png \ $out/share/icons/hicolor/512x512/apps/frame.png + + source "${makeWrapper}/nix-support/setup-hook" + wrapProgram "$out/bin/${pname}" \ + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations}}" + substituteInPlace $out/share/applications/frame.desktop \ --replace 'Exec=AppRun' 'Exec=${pname}' ''; From af0311a0f12cec94783c23b117b0f546bb3c2e83 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 3 Oct 2023 10:49:39 +0000 Subject: [PATCH 004/420] checkstyle: 10.12.3 -> 10.12.4 --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index f8bc11d63a6a..d6c6740e2a26 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }: stdenvNoCC.mkDerivation rec { - version = "10.12.3"; + version = "10.12.4"; pname = "checkstyle"; src = fetchurl { url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; - sha256 = "sha256-drJO3sZlh2G9f80cvPD41YjhHZt74lmV9bSIhUDrTKo="; + sha256 = "sha256-ecWTB/4Lc7zgkQI6nN5VvKfRizeMEdyGUyL0fxiAHhk="; }; nativeBuildInputs = [ makeBinaryWrapper ]; From 35994c0016988698e8cadc0bd46b9c19dcf1a661 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 3 Oct 2023 12:25:55 +0000 Subject: [PATCH 005/420] python311Packages.pygithub: 1.59.1 -> 2.1.1 --- pkgs/development/python-modules/pygithub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygithub/default.nix b/pkgs/development/python-modules/pygithub/default.nix index a42c41a392dd..cbfacc2c4f36 100644 --- a/pkgs/development/python-modules/pygithub/default.nix +++ b/pkgs/development/python-modules/pygithub/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "pygithub"; - version = "1.59.1"; + version = "2.1.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "PyGithub"; repo = "PyGithub"; rev = "refs/tags/v${version}"; - hash = "sha256-tzM2+nLBHTbKlQ7HLmNRq4Kn62vmz1MaGyZsnaJSrgQ="; + hash = "sha256-ysa1RAWuFFQCF6bYwAUVFou7nxCKHLZbUtrUtXiSpPk="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; From d7fde77938378b17123b6ee6a6ce19029d34df17 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 02:10:09 -0700 Subject: [PATCH 006/420] python3Packages.types-aiobotocore-accessanalyzer: init at 2.6.0 --- .../types-aiobotocore-packages/default.nix | 49 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 6 +++ 2 files changed, 55 insertions(+) create mode 100644 pkgs/development/python-modules/types-aiobotocore-packages/default.nix diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix new file mode 100644 index 000000000000..b0665702aa4e --- /dev/null +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -0,0 +1,49 @@ +{ lib +, buildPythonPackage +, pythonOlder +, aiobotocore +, botocore +, typing-extensions +, fetchPypi +}: +let + toUnderscore = str: builtins.replaceStrings [ "-" ] [ "_" ] str; + + buildTypesAiobotocorePackage = serviceName: version: hash: + buildPythonPackage rec { + pname = "types-aiobotocore-${serviceName}"; + inherit version; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchPypi { + inherit pname version hash; + }; + + propagatedBuildInputs = [ + aiobotocore + botocore + ] ++ lib.optionals (pythonOlder "3.12") [ + typing-extensions + ]; + + # Project has no tests + doCheck = false; + + pythonImportsCheck = [ + "types_aiobotocore_${toUnderscore serviceName}" + ]; + + meta = with lib; { + description = "Type annotations for aiobotocore ${serviceName}"; + homepage = "https://github.com/youtype/mypy_boto3_builder"; + license = with licenses; [ mit ]; + maintainers = with maintainers; [ mbalatsko ]; + }; + }; +in +rec { + types-aiobotocore-accessanalyzer = buildTypesAiobotocorePackage "accessanalyzer" "2.6.0" "sha256-Bit55lGYI8+VOEm+6NKlfxWldFWdiAFwRZjJsgwuv7Q="; + +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bd9a0ea7fe75..0cdf8815c5c5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14143,6 +14143,12 @@ self: super: with self; { type-infer = callPackage ../development/python-modules/type-infer { }; + inherit (callPackage ../development/python-modules/types-aiobotocore-packages { }) + + types-aiobotocore-accessanalyzer + + ; + types-appdirs = callPackage ../development/python-modules/types-appdirs { }; types-awscrt = callPackage ../development/python-modules/types-awscrt { }; From fef38ed154a8b7f3cb8fb7ec669395d809881dd4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:01 -0700 Subject: [PATCH 007/420] python3Packages.types-aiobotocore-xray: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 1 + pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b0665702aa4e..288cddbb58b8 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -46,4 +46,5 @@ in rec { types-aiobotocore-accessanalyzer = buildTypesAiobotocorePackage "accessanalyzer" "2.6.0" "sha256-Bit55lGYI8+VOEm+6NKlfxWldFWdiAFwRZjJsgwuv7Q="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0cdf8815c5c5..b1f5eea6bc25 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14147,6 +14147,8 @@ self: super: with self; { types-aiobotocore-accessanalyzer + types-aiobotocore-xray + ; types-appdirs = callPackage ../development/python-modules/types-appdirs { }; From e023540ab2ee74df1910f92fc61d582244435e7d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:10 -0700 Subject: [PATCH 008/420] python3Packages.types-aiobotocore-account: init at 2.5.2.post3 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 288cddbb58b8..92fb64c0ad13 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -46,5 +46,7 @@ in rec { types-aiobotocore-accessanalyzer = buildTypesAiobotocorePackage "accessanalyzer" "2.6.0" "sha256-Bit55lGYI8+VOEm+6NKlfxWldFWdiAFwRZjJsgwuv7Q="; + types-aiobotocore-account = buildTypesAiobotocorePackage "account" "2.5.2.post3" "sha256-zuBKsuPD3Sjl8KWKIlMgKtzfmtVc8ZZyIMKyPC2QjmY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b1f5eea6bc25..f0adb37a42dd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14147,6 +14147,8 @@ self: super: with self; { types-aiobotocore-accessanalyzer + types-aiobotocore-account + types-aiobotocore-xray ; From 701911ebd5dd1e2ddb63ce583a0c29de601fb873 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:14 -0700 Subject: [PATCH 009/420] python3Packages.types-aiobotocore-acm: init at 2.5.4 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 92fb64c0ad13..09325759e087 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -48,5 +48,7 @@ rec { types-aiobotocore-account = buildTypesAiobotocorePackage "account" "2.5.2.post3" "sha256-zuBKsuPD3Sjl8KWKIlMgKtzfmtVc8ZZyIMKyPC2QjmY="; + types-aiobotocore-acm = buildTypesAiobotocorePackage "acm" "2.5.4" "sha256-B7SsW+FtSOMfFFdfmH9iv/i9R/qj6ImAr95gpPAf3G4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f0adb37a42dd..ad107bd12920 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14149,6 +14149,8 @@ self: super: with self; { types-aiobotocore-account + types-aiobotocore-acm + types-aiobotocore-xray ; From a5e087adff58052c1200d07b4bcdbb51325724a7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:19 -0700 Subject: [PATCH 010/420] python3Packages.types-aiobotocore-acm-pca: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 09325759e087..b9dc6ff02224 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -50,5 +50,7 @@ rec { types-aiobotocore-acm = buildTypesAiobotocorePackage "acm" "2.5.4" "sha256-B7SsW+FtSOMfFFdfmH9iv/i9R/qj6ImAr95gpPAf3G4="; + types-aiobotocore-acm-pca = buildTypesAiobotocorePackage "acm-pca" "2.6.0" "sha256-AO3CEqWkLBTkx4k8YamcUUCg2TwHODCMjz6ujubzLjA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ad107bd12920..a60fad3e1803 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14151,6 +14151,8 @@ self: super: with self; { types-aiobotocore-acm + types-aiobotocore-acm-pca + types-aiobotocore-xray ; From 2ee273157ab70796f13a1d96674e98e6aaf3b656 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:23 -0700 Subject: [PATCH 011/420] python3Packages.types-aiobotocore-alexaforbusiness: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b9dc6ff02224..42c1b9fd6c27 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -52,5 +52,7 @@ rec { types-aiobotocore-acm-pca = buildTypesAiobotocorePackage "acm-pca" "2.6.0" "sha256-AO3CEqWkLBTkx4k8YamcUUCg2TwHODCMjz6ujubzLjA="; + types-aiobotocore-alexaforbusiness = buildTypesAiobotocorePackage "alexaforbusiness" "2.6.0" "sha256-Pjfm+q8Wq7BT3QfFcLuODteOZdvNXSegde1sc6z2UOk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a60fad3e1803..b26fd2ac1f92 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14153,6 +14153,8 @@ self: super: with self; { types-aiobotocore-acm-pca + types-aiobotocore-alexaforbusiness + types-aiobotocore-xray ; From 1e11db5d8683bbd4e8637b52384a5126c9100059 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:27 -0700 Subject: [PATCH 012/420] python3Packages.types-aiobotocore-amp: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 42c1b9fd6c27..406b121c285f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -54,5 +54,7 @@ rec { types-aiobotocore-alexaforbusiness = buildTypesAiobotocorePackage "alexaforbusiness" "2.6.0" "sha256-Pjfm+q8Wq7BT3QfFcLuODteOZdvNXSegde1sc6z2UOk="; + types-aiobotocore-amp = buildTypesAiobotocorePackage "amp" "2.6.0" "sha256-EZ/wSfcWnT7DoSRegMZnzukVLlTFYP2UsR+rEiLwtnE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b26fd2ac1f92..5fb87fca7eb7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14155,6 +14155,8 @@ self: super: with self; { types-aiobotocore-alexaforbusiness + types-aiobotocore-amp + types-aiobotocore-xray ; From 62182c48d549355c0341920f8a4242946a19a3b5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:32 -0700 Subject: [PATCH 013/420] python3Packages.types-aiobotocore-amplify: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 406b121c285f..d93d14c974d1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -56,5 +56,7 @@ rec { types-aiobotocore-amp = buildTypesAiobotocorePackage "amp" "2.6.0" "sha256-EZ/wSfcWnT7DoSRegMZnzukVLlTFYP2UsR+rEiLwtnE="; + types-aiobotocore-amplify = buildTypesAiobotocorePackage "amplify" "2.6.0" "sha256-IkvRE9xD0y8l48rWuV1cvnOQ7eHr0hYsrD3NusofgyI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5fb87fca7eb7..160a79f19f84 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14157,6 +14157,8 @@ self: super: with self; { types-aiobotocore-amp + types-aiobotocore-amplify + types-aiobotocore-xray ; From efad6da59712d90e5f20d5ea08284a3cda5a8baa Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:37 -0700 Subject: [PATCH 014/420] python3Packages.types-aiobotocore-amplifybackend: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d93d14c974d1..90d8f2c9b5a4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -58,5 +58,7 @@ rec { types-aiobotocore-amplify = buildTypesAiobotocorePackage "amplify" "2.6.0" "sha256-IkvRE9xD0y8l48rWuV1cvnOQ7eHr0hYsrD3NusofgyI="; + types-aiobotocore-amplifybackend = buildTypesAiobotocorePackage "amplifybackend" "2.6.0" "sha256-4sSNDhmNuOnYPq0X/G8m0XDP08W+MUQ3xiWK9Yc8U6Q="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 160a79f19f84..6e0f4b0f8ac4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14159,6 +14159,8 @@ self: super: with self; { types-aiobotocore-amplify + types-aiobotocore-amplifybackend + types-aiobotocore-xray ; From 6432e359948267f9c324941a309a7c24073d29de Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:41 -0700 Subject: [PATCH 015/420] python3Packages.types-aiobotocore-amplifyuibuilder: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 90d8f2c9b5a4..00dcd1d5a0fb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -60,5 +60,7 @@ rec { types-aiobotocore-amplifybackend = buildTypesAiobotocorePackage "amplifybackend" "2.6.0" "sha256-4sSNDhmNuOnYPq0X/G8m0XDP08W+MUQ3xiWK9Yc8U6Q="; + types-aiobotocore-amplifyuibuilder = buildTypesAiobotocorePackage "amplifyuibuilder" "2.6.0" "sha256-K1esoNUDYWzqK12X6o5c12XJQGGDNlCyUiVsNsUaQhI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6e0f4b0f8ac4..6ca47bdfd6d0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14161,6 +14161,8 @@ self: super: with self; { types-aiobotocore-amplifybackend + types-aiobotocore-amplifyuibuilder + types-aiobotocore-xray ; From a62cbf02910dd9fd5367519b5e77822ca7f22c3e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:45 -0700 Subject: [PATCH 016/420] python3Packages.types-aiobotocore-apigateway: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 00dcd1d5a0fb..354f88b4ecdd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -62,5 +62,7 @@ rec { types-aiobotocore-amplifyuibuilder = buildTypesAiobotocorePackage "amplifyuibuilder" "2.6.0" "sha256-K1esoNUDYWzqK12X6o5c12XJQGGDNlCyUiVsNsUaQhI="; + types-aiobotocore-apigateway = buildTypesAiobotocorePackage "apigateway" "2.6.0" "sha256-r4eDPDqkcQhApN/+4xjDuillQnDOqu2xqyACYHqXRpw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ca47bdfd6d0..297a2a0211f3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14163,6 +14163,8 @@ self: super: with self; { types-aiobotocore-amplifyuibuilder + types-aiobotocore-apigateway + types-aiobotocore-xray ; From 4e028b825ebde60b4da8903bb4273d8578b1a304 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:50 -0700 Subject: [PATCH 017/420] python3Packages.types-aiobotocore-apigatewaymanagementapi: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 354f88b4ecdd..4ffe4c240ecd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -64,5 +64,7 @@ rec { types-aiobotocore-apigateway = buildTypesAiobotocorePackage "apigateway" "2.6.0" "sha256-r4eDPDqkcQhApN/+4xjDuillQnDOqu2xqyACYHqXRpw="; + types-aiobotocore-apigatewaymanagementapi = buildTypesAiobotocorePackage "apigatewaymanagementapi" "2.6.0" "sha256-sAJW4q/mUaRsiN7Yt/uBMbxDfKhTSdiZaDd7nvvM3og="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 297a2a0211f3..2ef56f271e62 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14165,6 +14165,8 @@ self: super: with self; { types-aiobotocore-apigateway + types-aiobotocore-apigatewaymanagementapi + types-aiobotocore-xray ; From 090753c94b955d6679efbf937913399d9a90cabd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:54 -0700 Subject: [PATCH 018/420] python3Packages.types-aiobotocore-apigatewayv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4ffe4c240ecd..e13c9e76e6be 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -66,5 +66,7 @@ rec { types-aiobotocore-apigatewaymanagementapi = buildTypesAiobotocorePackage "apigatewaymanagementapi" "2.6.0" "sha256-sAJW4q/mUaRsiN7Yt/uBMbxDfKhTSdiZaDd7nvvM3og="; + types-aiobotocore-apigatewayv2 = buildTypesAiobotocorePackage "apigatewayv2" "2.6.0" "sha256-cNNVvAX1o+ZieUaW59yp5ELFf2S96XdCOLeVe91oFI8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ef56f271e62..d0e1c2ec92f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14167,6 +14167,8 @@ self: super: with self; { types-aiobotocore-apigatewaymanagementapi + types-aiobotocore-apigatewayv2 + types-aiobotocore-xray ; From 0b3eb5a12e7e931812be65285d8f60354dd329f8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:52:59 -0700 Subject: [PATCH 019/420] python3Packages.types-aiobotocore-appconfig: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e13c9e76e6be..965c9f191964 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -68,5 +68,7 @@ rec { types-aiobotocore-apigatewayv2 = buildTypesAiobotocorePackage "apigatewayv2" "2.6.0" "sha256-cNNVvAX1o+ZieUaW59yp5ELFf2S96XdCOLeVe91oFI8="; + types-aiobotocore-appconfig = buildTypesAiobotocorePackage "appconfig" "2.6.0" "sha256-qliKZTlmnPwRdhQs26M0PlCM91Mn7cHCmccCAhDtryU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d0e1c2ec92f5..2ed105362587 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14169,6 +14169,8 @@ self: super: with self; { types-aiobotocore-apigatewayv2 + types-aiobotocore-appconfig + types-aiobotocore-xray ; From 7a6536428a28d7e8701e836d8f5416956cb1b7a2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:04 -0700 Subject: [PATCH 020/420] python3Packages.types-aiobotocore-appconfigdata: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 965c9f191964..4d6bf1337441 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -70,5 +70,7 @@ rec { types-aiobotocore-appconfig = buildTypesAiobotocorePackage "appconfig" "2.6.0" "sha256-qliKZTlmnPwRdhQs26M0PlCM91Mn7cHCmccCAhDtryU="; + types-aiobotocore-appconfigdata = buildTypesAiobotocorePackage "appconfigdata" "2.6.0" "sha256-DcLOpKbUl/YOinXXtlo2su0uMh0Ja5cGrpbmKuQVGvw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ed105362587..aa3ac0a05daa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14171,6 +14171,8 @@ self: super: with self; { types-aiobotocore-appconfig + types-aiobotocore-appconfigdata + types-aiobotocore-xray ; From 0ba55539510f1c46512a52fa07d339605f917481 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:08 -0700 Subject: [PATCH 021/420] python3Packages.types-aiobotocore-appfabric: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4d6bf1337441..4ce8293626f0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -72,5 +72,7 @@ rec { types-aiobotocore-appconfigdata = buildTypesAiobotocorePackage "appconfigdata" "2.6.0" "sha256-DcLOpKbUl/YOinXXtlo2su0uMh0Ja5cGrpbmKuQVGvw="; + types-aiobotocore-appfabric = buildTypesAiobotocorePackage "appfabric" "2.6.0" "sha256-yQvNa3iBsoAD4oBVmt0ZNjziBEhzTUE6E6FFLluxTZw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index aa3ac0a05daa..15f588764bc4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14173,6 +14173,8 @@ self: super: with self; { types-aiobotocore-appconfigdata + types-aiobotocore-appfabric + types-aiobotocore-xray ; From 29e451af5776eafc754411bac1e587242122a296 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:13 -0700 Subject: [PATCH 022/420] python3Packages.types-aiobotocore-appflow: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4ce8293626f0..9bf55f33d4bb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -74,5 +74,7 @@ rec { types-aiobotocore-appfabric = buildTypesAiobotocorePackage "appfabric" "2.6.0" "sha256-yQvNa3iBsoAD4oBVmt0ZNjziBEhzTUE6E6FFLluxTZw="; + types-aiobotocore-appflow = buildTypesAiobotocorePackage "appflow" "2.6.0" "sha256-ILdWiqipfSnSjdToIq++JIu1WUmv+lMX72Ymo9KGZ9s="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 15f588764bc4..568bfa79fe81 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14175,6 +14175,8 @@ self: super: with self; { types-aiobotocore-appfabric + types-aiobotocore-appflow + types-aiobotocore-xray ; From 9235e909425d3926f684c933e9184e6b2568fd09 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:17 -0700 Subject: [PATCH 023/420] python3Packages.types-aiobotocore-appintegrations: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9bf55f33d4bb..0d5a8a0991be 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -76,5 +76,7 @@ rec { types-aiobotocore-appflow = buildTypesAiobotocorePackage "appflow" "2.6.0" "sha256-ILdWiqipfSnSjdToIq++JIu1WUmv+lMX72Ymo9KGZ9s="; + types-aiobotocore-appintegrations = buildTypesAiobotocorePackage "appintegrations" "2.6.0" "sha256-ZPNB2PUpeTttagX1rRmgINgahj3cNuBdKQMvdFNK15Y="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 568bfa79fe81..2ff38a3f5247 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14177,6 +14177,8 @@ self: super: with self; { types-aiobotocore-appflow + types-aiobotocore-appintegrations + types-aiobotocore-xray ; From 7ef5b93b2c3200430d918fbb8a145bd522b1beae Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:22 -0700 Subject: [PATCH 024/420] python3Packages.types-aiobotocore-application-autoscaling: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0d5a8a0991be..6fc333f48087 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -78,5 +78,7 @@ rec { types-aiobotocore-appintegrations = buildTypesAiobotocorePackage "appintegrations" "2.6.0" "sha256-ZPNB2PUpeTttagX1rRmgINgahj3cNuBdKQMvdFNK15Y="; + types-aiobotocore-application-autoscaling = buildTypesAiobotocorePackage "application-autoscaling" "2.6.0" "sha256-p5EgvysfhIHz4ZALV8tJz/7ZkRIu2BIZwENiiVho67w="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ff38a3f5247..b6a1d6a932d8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14179,6 +14179,8 @@ self: super: with self; { types-aiobotocore-appintegrations + types-aiobotocore-application-autoscaling + types-aiobotocore-xray ; From 496275c001170cce97336fe450da381b1ee278a6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:26 -0700 Subject: [PATCH 025/420] python3Packages.types-aiobotocore-application-insights: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6fc333f48087..0aa0a265770d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -80,5 +80,7 @@ rec { types-aiobotocore-application-autoscaling = buildTypesAiobotocorePackage "application-autoscaling" "2.6.0" "sha256-p5EgvysfhIHz4ZALV8tJz/7ZkRIu2BIZwENiiVho67w="; + types-aiobotocore-application-insights = buildTypesAiobotocorePackage "application-insights" "2.6.0" "sha256-PUDqMFJu2BG3WVCS6SYyltrSr64VblVAgrCYQ6FR2sk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b6a1d6a932d8..497ad3c30ef1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14181,6 +14181,8 @@ self: super: with self; { types-aiobotocore-application-autoscaling + types-aiobotocore-application-insights + types-aiobotocore-xray ; From a54c95bb15e32a1841354ca7c0e40c292719eea6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:31 -0700 Subject: [PATCH 026/420] python3Packages.types-aiobotocore-applicationcostprofiler: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0aa0a265770d..154c872d4218 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -82,5 +82,7 @@ rec { types-aiobotocore-application-insights = buildTypesAiobotocorePackage "application-insights" "2.6.0" "sha256-PUDqMFJu2BG3WVCS6SYyltrSr64VblVAgrCYQ6FR2sk="; + types-aiobotocore-applicationcostprofiler = buildTypesAiobotocorePackage "applicationcostprofiler" "2.6.0" "sha256-bGlbP0d38vFHkITC84N43Vt1Nrsf3+ByWSvvteDejBw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 497ad3c30ef1..43e7cddc092d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14183,6 +14183,8 @@ self: super: with self; { types-aiobotocore-application-insights + types-aiobotocore-applicationcostprofiler + types-aiobotocore-xray ; From e5f1a565252d3a302ff3093c1e5e32b61b1c71b8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:35 -0700 Subject: [PATCH 027/420] python3Packages.types-aiobotocore-appmesh: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 154c872d4218..a3fb44e5fc83 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -84,5 +84,7 @@ rec { types-aiobotocore-applicationcostprofiler = buildTypesAiobotocorePackage "applicationcostprofiler" "2.6.0" "sha256-bGlbP0d38vFHkITC84N43Vt1Nrsf3+ByWSvvteDejBw="; + types-aiobotocore-appmesh = buildTypesAiobotocorePackage "appmesh" "2.6.0" "sha256-Lcoc/IJ9o1glV8gNNA/t9B3J6K5Qz/50fqPMsF78WVI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 43e7cddc092d..0811f6dda3a1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14185,6 +14185,8 @@ self: super: with self; { types-aiobotocore-applicationcostprofiler + types-aiobotocore-appmesh + types-aiobotocore-xray ; From 1906098ce31c0ce7dc4f02728cbf59fa5f0220d3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:40 -0700 Subject: [PATCH 028/420] python3Packages.types-aiobotocore-apprunner: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a3fb44e5fc83..bca74412784a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -86,5 +86,7 @@ rec { types-aiobotocore-appmesh = buildTypesAiobotocorePackage "appmesh" "2.6.0" "sha256-Lcoc/IJ9o1glV8gNNA/t9B3J6K5Qz/50fqPMsF78WVI="; + types-aiobotocore-apprunner = buildTypesAiobotocorePackage "apprunner" "2.6.0" "sha256-zyesnbNmSrQEsBVQJouP05zxhBTikGZVCR/VFdEkHNE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0811f6dda3a1..5a65126f1c81 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14187,6 +14187,8 @@ self: super: with self; { types-aiobotocore-appmesh + types-aiobotocore-apprunner + types-aiobotocore-xray ; From bb9250b189317f90616f575c66d6415739889800 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:44 -0700 Subject: [PATCH 029/420] python3Packages.types-aiobotocore-appstream: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bca74412784a..2035e26adac8 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -88,5 +88,7 @@ rec { types-aiobotocore-apprunner = buildTypesAiobotocorePackage "apprunner" "2.6.0" "sha256-zyesnbNmSrQEsBVQJouP05zxhBTikGZVCR/VFdEkHNE="; + types-aiobotocore-appstream = buildTypesAiobotocorePackage "appstream" "2.6.0" "sha256-+4LWBHHwL1R4jBGHChSUOq9vFc+k7NmRXvo8ZjDIyXk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a65126f1c81..9a4fb93c895e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14189,6 +14189,8 @@ self: super: with self; { types-aiobotocore-apprunner + types-aiobotocore-appstream + types-aiobotocore-xray ; From 32db65e9fa833a3119571f9ebf100b164caa1ce1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:49 -0700 Subject: [PATCH 030/420] python3Packages.types-aiobotocore-appsync: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 2035e26adac8..d3fdffae0a3e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -90,5 +90,7 @@ rec { types-aiobotocore-appstream = buildTypesAiobotocorePackage "appstream" "2.6.0" "sha256-+4LWBHHwL1R4jBGHChSUOq9vFc+k7NmRXvo8ZjDIyXk="; + types-aiobotocore-appsync = buildTypesAiobotocorePackage "appsync" "2.6.0" "sha256-JFrBy9Ck/Ni4lwHV47fkzt/YI5cX9FvTeaT0tNgzdqs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9a4fb93c895e..742da46c0f98 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14191,6 +14191,8 @@ self: super: with self; { types-aiobotocore-appstream + types-aiobotocore-appsync + types-aiobotocore-xray ; From 472ddb055bed3c07e94d80c7295530d817273113 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:54 -0700 Subject: [PATCH 031/420] python3Packages.types-aiobotocore-arc-zonal-shift: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d3fdffae0a3e..ad8931248d6f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -92,5 +92,7 @@ rec { types-aiobotocore-appsync = buildTypesAiobotocorePackage "appsync" "2.6.0" "sha256-JFrBy9Ck/Ni4lwHV47fkzt/YI5cX9FvTeaT0tNgzdqs="; + types-aiobotocore-arc-zonal-shift = buildTypesAiobotocorePackage "arc-zonal-shift" "2.6.0" "sha256-qTW58yyFwbBYyisuL4NkaEXqblJ3vevXI1lHZVX4mZY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 742da46c0f98..4fa9fb5213f1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14193,6 +14193,8 @@ self: super: with self; { types-aiobotocore-appsync + types-aiobotocore-arc-zonal-shift + types-aiobotocore-xray ; From 9c7aa6a36d1a035025f9a9bcf5101d0c46c31a67 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:53:58 -0700 Subject: [PATCH 032/420] python3Packages.types-aiobotocore-athena: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ad8931248d6f..fc127baebfd2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -94,5 +94,7 @@ rec { types-aiobotocore-arc-zonal-shift = buildTypesAiobotocorePackage "arc-zonal-shift" "2.6.0" "sha256-qTW58yyFwbBYyisuL4NkaEXqblJ3vevXI1lHZVX4mZY="; + types-aiobotocore-athena = buildTypesAiobotocorePackage "athena" "2.6.0" "sha256-xmTKI8q82UohBE+Wh+j1xivsY8wmrcvOlDAlwTpJmxE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4fa9fb5213f1..dee2344d616f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14195,6 +14195,8 @@ self: super: with self; { types-aiobotocore-arc-zonal-shift + types-aiobotocore-athena + types-aiobotocore-xray ; From 9616b949267f81dff21b573860b4e531fbc52c2d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:03 -0700 Subject: [PATCH 033/420] python3Packages.types-aiobotocore-auditmanager: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fc127baebfd2..98cbf93110db 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -96,5 +96,7 @@ rec { types-aiobotocore-athena = buildTypesAiobotocorePackage "athena" "2.6.0" "sha256-xmTKI8q82UohBE+Wh+j1xivsY8wmrcvOlDAlwTpJmxE="; + types-aiobotocore-auditmanager = buildTypesAiobotocorePackage "auditmanager" "2.6.0" "sha256-a+47CFM19RM3Y+9wLLe8D4II7rKeDQ93dy68jqJqBD4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dee2344d616f..15979b70f844 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14197,6 +14197,8 @@ self: super: with self; { types-aiobotocore-athena + types-aiobotocore-auditmanager + types-aiobotocore-xray ; From 183a85c4098fb4b07222478173766468c99cddcb Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:07 -0700 Subject: [PATCH 034/420] python3Packages.types-aiobotocore-autoscaling: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 98cbf93110db..6c131ca6244e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -98,5 +98,7 @@ rec { types-aiobotocore-auditmanager = buildTypesAiobotocorePackage "auditmanager" "2.6.0" "sha256-a+47CFM19RM3Y+9wLLe8D4II7rKeDQ93dy68jqJqBD4="; + types-aiobotocore-autoscaling = buildTypesAiobotocorePackage "autoscaling" "2.6.0" "sha256-s0ClcRgYJcd5GZXYWMn2FieNXebdlS9206mLtKCSy44="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 15979b70f844..08d2603a2799 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14199,6 +14199,8 @@ self: super: with self; { types-aiobotocore-auditmanager + types-aiobotocore-autoscaling + types-aiobotocore-xray ; From d0d0656f98d598e2ab02e9b6512487b6788be666 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:12 -0700 Subject: [PATCH 035/420] python3Packages.types-aiobotocore-autoscaling-plans: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6c131ca6244e..259d7aa1b3dd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -100,5 +100,7 @@ rec { types-aiobotocore-autoscaling = buildTypesAiobotocorePackage "autoscaling" "2.6.0" "sha256-s0ClcRgYJcd5GZXYWMn2FieNXebdlS9206mLtKCSy44="; + types-aiobotocore-autoscaling-plans = buildTypesAiobotocorePackage "autoscaling-plans" "2.6.0" "sha256-ZhOokFIm5KHBc5X+Lp19z5N7BudTQHU5KjHGYCrW/aE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 08d2603a2799..c3423e4ae7d5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14201,6 +14201,8 @@ self: super: with self; { types-aiobotocore-autoscaling + types-aiobotocore-autoscaling-plans + types-aiobotocore-xray ; From d6b202f620b4645357b5767d44e8b0ff61efbd21 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:16 -0700 Subject: [PATCH 036/420] python3Packages.types-aiobotocore-backup: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 259d7aa1b3dd..830cc6e489f3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -102,5 +102,7 @@ rec { types-aiobotocore-autoscaling-plans = buildTypesAiobotocorePackage "autoscaling-plans" "2.6.0" "sha256-ZhOokFIm5KHBc5X+Lp19z5N7BudTQHU5KjHGYCrW/aE="; + types-aiobotocore-backup = buildTypesAiobotocorePackage "backup" "2.6.0" "sha256-rmm10kZXRkmj0TxqARf+57Nz8LapZF7TaH9GGwhIHys="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c3423e4ae7d5..97639f03ec8b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14203,6 +14203,8 @@ self: super: with self; { types-aiobotocore-autoscaling-plans + types-aiobotocore-backup + types-aiobotocore-xray ; From 41c24f768b3e351c2fb0ae2151d3689fc67d8dcf Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:21 -0700 Subject: [PATCH 037/420] python3Packages.types-aiobotocore-backup-gateway: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 830cc6e489f3..45f47fac7684 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -104,5 +104,7 @@ rec { types-aiobotocore-backup = buildTypesAiobotocorePackage "backup" "2.6.0" "sha256-rmm10kZXRkmj0TxqARf+57Nz8LapZF7TaH9GGwhIHys="; + types-aiobotocore-backup-gateway = buildTypesAiobotocorePackage "backup-gateway" "2.6.0" "sha256-/YH0nuyWaEVPlZFxJarGkWOnLcpiIvvf/GCmxMOaybI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 97639f03ec8b..c5a43250b45a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14205,6 +14205,8 @@ self: super: with self; { types-aiobotocore-backup + types-aiobotocore-backup-gateway + types-aiobotocore-xray ; From 8cedc6c90a42bf9c796fbe2d523d87d7281fe954 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:25 -0700 Subject: [PATCH 038/420] python3Packages.types-aiobotocore-backupstorage: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 45f47fac7684..0f20a84ded61 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -106,5 +106,7 @@ rec { types-aiobotocore-backup-gateway = buildTypesAiobotocorePackage "backup-gateway" "2.6.0" "sha256-/YH0nuyWaEVPlZFxJarGkWOnLcpiIvvf/GCmxMOaybI="; + types-aiobotocore-backupstorage = buildTypesAiobotocorePackage "backupstorage" "2.6.0" "sha256-OC1xWUT0BjBoelAxHkprhD54kF+YbK30H/42Q3XxdwY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c5a43250b45a..a72bae06c953 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14207,6 +14207,8 @@ self: super: with self; { types-aiobotocore-backup-gateway + types-aiobotocore-backupstorage + types-aiobotocore-xray ; From 11060b83405e9ea027583d76e5c1a4aa3f1b322d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:30 -0700 Subject: [PATCH 039/420] python3Packages.types-aiobotocore-batch: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0f20a84ded61..1d40df8b3d81 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -108,5 +108,7 @@ rec { types-aiobotocore-backupstorage = buildTypesAiobotocorePackage "backupstorage" "2.6.0" "sha256-OC1xWUT0BjBoelAxHkprhD54kF+YbK30H/42Q3XxdwY="; + types-aiobotocore-batch = buildTypesAiobotocorePackage "batch" "2.6.0" "sha256-/5yrgR7NbQ6GbkC9SsHaAhDa3juBjyRt705wHTu6Mr8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a72bae06c953..9b9224588ebc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14209,6 +14209,8 @@ self: super: with self; { types-aiobotocore-backupstorage + types-aiobotocore-batch + types-aiobotocore-xray ; From dee8321c6059fd38abfc8f1dad24e8e30aa27f4a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:34 -0700 Subject: [PATCH 040/420] python3Packages.types-aiobotocore-billingconductor: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1d40df8b3d81..d6a7c731ad13 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -110,5 +110,7 @@ rec { types-aiobotocore-batch = buildTypesAiobotocorePackage "batch" "2.6.0" "sha256-/5yrgR7NbQ6GbkC9SsHaAhDa3juBjyRt705wHTu6Mr8="; + types-aiobotocore-billingconductor = buildTypesAiobotocorePackage "billingconductor" "2.6.0" "sha256-bDEICyyIUCRxbTWZFXHsj5yncQI+F+geC92vvsrKCxw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b9224588ebc..4bd63322ff95 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14211,6 +14211,8 @@ self: super: with self; { types-aiobotocore-batch + types-aiobotocore-billingconductor + types-aiobotocore-xray ; From e692b9821e8f159b1270457b9cf803490f4a9b15 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:38 -0700 Subject: [PATCH 041/420] python3Packages.types-aiobotocore-braket: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d6a7c731ad13..05a691f5e313 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -112,5 +112,7 @@ rec { types-aiobotocore-billingconductor = buildTypesAiobotocorePackage "billingconductor" "2.6.0" "sha256-bDEICyyIUCRxbTWZFXHsj5yncQI+F+geC92vvsrKCxw="; + types-aiobotocore-braket = buildTypesAiobotocorePackage "braket" "2.6.0" "sha256-aobQZov192xNkN7cwIKLgJnhxltyLpWw1oKk2m1HkV8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4bd63322ff95..c60a2a695c8d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14213,6 +14213,8 @@ self: super: with self; { types-aiobotocore-billingconductor + types-aiobotocore-braket + types-aiobotocore-xray ; From 0e00f5f03ff4aa56b373403d72584a44cda52bc0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:43 -0700 Subject: [PATCH 042/420] python3Packages.types-aiobotocore-budgets: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 05a691f5e313..3610e5daef5d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -114,5 +114,7 @@ rec { types-aiobotocore-braket = buildTypesAiobotocorePackage "braket" "2.6.0" "sha256-aobQZov192xNkN7cwIKLgJnhxltyLpWw1oKk2m1HkV8="; + types-aiobotocore-budgets = buildTypesAiobotocorePackage "budgets" "2.6.0" "sha256-0tFKq0VomVAD9NRtlQzilQEZHFOZp40vtTKfoBqjpyU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c60a2a695c8d..378f7ca97a51 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14215,6 +14215,8 @@ self: super: with self; { types-aiobotocore-braket + types-aiobotocore-budgets + types-aiobotocore-xray ; From 469a6497b8cebce58ed61b63e40aa4a81aaa2cdd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:47 -0700 Subject: [PATCH 043/420] python3Packages.types-aiobotocore-ce: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3610e5daef5d..0bfba4ec2977 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -116,5 +116,7 @@ rec { types-aiobotocore-budgets = buildTypesAiobotocorePackage "budgets" "2.6.0" "sha256-0tFKq0VomVAD9NRtlQzilQEZHFOZp40vtTKfoBqjpyU="; + types-aiobotocore-ce = buildTypesAiobotocorePackage "ce" "2.6.0" "sha256-eKYNFMlDt9uUaqsK8PPTpt1wghN3nGgM+idQBVei8eY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 378f7ca97a51..96fd0ff92366 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14217,6 +14217,8 @@ self: super: with self; { types-aiobotocore-budgets + types-aiobotocore-ce + types-aiobotocore-xray ; From ed40ba2c1a5b280e133d0bbaeed8e5ed17254122 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:52 -0700 Subject: [PATCH 044/420] python3Packages.types-aiobotocore-chime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0bfba4ec2977..e79e4f9a530d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -118,5 +118,7 @@ rec { types-aiobotocore-ce = buildTypesAiobotocorePackage "ce" "2.6.0" "sha256-eKYNFMlDt9uUaqsK8PPTpt1wghN3nGgM+idQBVei8eY="; + types-aiobotocore-chime = buildTypesAiobotocorePackage "chime" "2.6.0" "sha256-5d9LUaSDvYI/Nrsmg4MnM0ucXmyzUQKV4DpX9pZst2s="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 96fd0ff92366..e08cead3eb3d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14219,6 +14219,8 @@ self: super: with self; { types-aiobotocore-ce + types-aiobotocore-chime + types-aiobotocore-xray ; From 0204e426221c7f7a1857c37e9ba42baa446e9276 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:54:56 -0700 Subject: [PATCH 045/420] python3Packages.types-aiobotocore-chime-sdk-identity: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e79e4f9a530d..cd3f7c168a97 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -120,5 +120,7 @@ rec { types-aiobotocore-chime = buildTypesAiobotocorePackage "chime" "2.6.0" "sha256-5d9LUaSDvYI/Nrsmg4MnM0ucXmyzUQKV4DpX9pZst2s="; + types-aiobotocore-chime-sdk-identity = buildTypesAiobotocorePackage "chime-sdk-identity" "2.6.0" "sha256-UXVS4iTbkv9/xmL5AFv3xlWtWk5qN/dam/ic4mg3+cI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e08cead3eb3d..dec79f207ff2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14221,6 +14221,8 @@ self: super: with self; { types-aiobotocore-chime + types-aiobotocore-chime-sdk-identity + types-aiobotocore-xray ; From 25299422a2973b01f1b99b7870ef25aee0faadca Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:01 -0700 Subject: [PATCH 046/420] python3Packages.types-aiobotocore-chime-sdk-media-pipelines: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index cd3f7c168a97..0ef9ecc8cb05 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -122,5 +122,7 @@ rec { types-aiobotocore-chime-sdk-identity = buildTypesAiobotocorePackage "chime-sdk-identity" "2.6.0" "sha256-UXVS4iTbkv9/xmL5AFv3xlWtWk5qN/dam/ic4mg3+cI="; + types-aiobotocore-chime-sdk-media-pipelines = buildTypesAiobotocorePackage "chime-sdk-media-pipelines" "2.6.0" "sha256-+2AioI5B/K5QhDsaBSAFyNW0Fd49EA8ZBVrULd3u7qQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dec79f207ff2..80fc1349d657 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14223,6 +14223,8 @@ self: super: with self; { types-aiobotocore-chime-sdk-identity + types-aiobotocore-chime-sdk-media-pipelines + types-aiobotocore-xray ; From 40362d0b8339c3312ef3faffd99691d667039335 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:05 -0700 Subject: [PATCH 047/420] python3Packages.types-aiobotocore-chime-sdk-meetings: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0ef9ecc8cb05..696d39d24143 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -124,5 +124,7 @@ rec { types-aiobotocore-chime-sdk-media-pipelines = buildTypesAiobotocorePackage "chime-sdk-media-pipelines" "2.6.0" "sha256-+2AioI5B/K5QhDsaBSAFyNW0Fd49EA8ZBVrULd3u7qQ="; + types-aiobotocore-chime-sdk-meetings = buildTypesAiobotocorePackage "chime-sdk-meetings" "2.6.0" "sha256-oxlFkYpDoi7pidqzDOYdeTazVl/HjnuZmnjMGZa/WIE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 80fc1349d657..66b82a894dba 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14225,6 +14225,8 @@ self: super: with self; { types-aiobotocore-chime-sdk-media-pipelines + types-aiobotocore-chime-sdk-meetings + types-aiobotocore-xray ; From f9949fedf8ce0133522fe5112fae641a0b677b53 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:10 -0700 Subject: [PATCH 048/420] python3Packages.types-aiobotocore-chime-sdk-messaging: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 696d39d24143..ab91b0b6ae53 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -126,5 +126,7 @@ rec { types-aiobotocore-chime-sdk-meetings = buildTypesAiobotocorePackage "chime-sdk-meetings" "2.6.0" "sha256-oxlFkYpDoi7pidqzDOYdeTazVl/HjnuZmnjMGZa/WIE="; + types-aiobotocore-chime-sdk-messaging = buildTypesAiobotocorePackage "chime-sdk-messaging" "2.6.0" "sha256-THOQl3ZUILwLRwYlBb7fQDgpYz7wkMyd+tSLEmHHBVY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 66b82a894dba..235826451a5c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14227,6 +14227,8 @@ self: super: with self; { types-aiobotocore-chime-sdk-meetings + types-aiobotocore-chime-sdk-messaging + types-aiobotocore-xray ; From ec3bc51650c84ac1fd347fbb7253137c7f77101c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:14 -0700 Subject: [PATCH 049/420] python3Packages.types-aiobotocore-chime-sdk-voice: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ab91b0b6ae53..b0d9c1eb67b7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -128,5 +128,7 @@ rec { types-aiobotocore-chime-sdk-messaging = buildTypesAiobotocorePackage "chime-sdk-messaging" "2.6.0" "sha256-THOQl3ZUILwLRwYlBb7fQDgpYz7wkMyd+tSLEmHHBVY="; + types-aiobotocore-chime-sdk-voice = buildTypesAiobotocorePackage "chime-sdk-voice" "2.6.0" "sha256-RwMXK2NrM4BDzeg5lcpxfVzxFzrqjZw+xhZnJL81Uqw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 235826451a5c..f78b72d67121 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14229,6 +14229,8 @@ self: super: with self; { types-aiobotocore-chime-sdk-messaging + types-aiobotocore-chime-sdk-voice + types-aiobotocore-xray ; From 72f02f12adcab72008231dbbf67c413000f9805d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:19 -0700 Subject: [PATCH 050/420] python3Packages.types-aiobotocore-cleanrooms: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b0d9c1eb67b7..a0649dabeb77 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -130,5 +130,7 @@ rec { types-aiobotocore-chime-sdk-voice = buildTypesAiobotocorePackage "chime-sdk-voice" "2.6.0" "sha256-RwMXK2NrM4BDzeg5lcpxfVzxFzrqjZw+xhZnJL81Uqw="; + types-aiobotocore-cleanrooms = buildTypesAiobotocorePackage "cleanrooms" "2.6.0" "sha256-i2XmS1m6YO7dOaMZKb0WRQB2WpRue+OCLbdR59oWA1Q="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f78b72d67121..79be8d188c6f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14231,6 +14231,8 @@ self: super: with self; { types-aiobotocore-chime-sdk-voice + types-aiobotocore-cleanrooms + types-aiobotocore-xray ; From 9acfbc0587329dc715a92214e293eb7079ee254b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:23 -0700 Subject: [PATCH 051/420] python3Packages.types-aiobotocore-cloud9: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a0649dabeb77..a530a0c43328 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -132,5 +132,7 @@ rec { types-aiobotocore-cleanrooms = buildTypesAiobotocorePackage "cleanrooms" "2.6.0" "sha256-i2XmS1m6YO7dOaMZKb0WRQB2WpRue+OCLbdR59oWA1Q="; + types-aiobotocore-cloud9 = buildTypesAiobotocorePackage "cloud9" "2.6.0" "sha256-W3ni8q7n4l8+SP/RyxibCTptextx4Vd8bmiQ3lhgszQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 79be8d188c6f..9ba03a29afa4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14233,6 +14233,8 @@ self: super: with self; { types-aiobotocore-cleanrooms + types-aiobotocore-cloud9 + types-aiobotocore-xray ; From 900e94ac416de63f3b25a41503f166a3980f2b61 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:28 -0700 Subject: [PATCH 052/420] python3Packages.types-aiobotocore-cloudcontrol: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a530a0c43328..b33578094928 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -134,5 +134,7 @@ rec { types-aiobotocore-cloud9 = buildTypesAiobotocorePackage "cloud9" "2.6.0" "sha256-W3ni8q7n4l8+SP/RyxibCTptextx4Vd8bmiQ3lhgszQ="; + types-aiobotocore-cloudcontrol = buildTypesAiobotocorePackage "cloudcontrol" "2.6.0" "sha256-qWbYfegOQ6QcEWA/gce9ZiIOBIVeWIj1qjfsksncDxY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9ba03a29afa4..96cea1495baa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14235,6 +14235,8 @@ self: super: with self; { types-aiobotocore-cloud9 + types-aiobotocore-cloudcontrol + types-aiobotocore-xray ; From 4f4e5ecc6471352ab130f1b1b3e0ba088efdcfa0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:33 -0700 Subject: [PATCH 053/420] python3Packages.types-aiobotocore-clouddirectory: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b33578094928..eb46f685c99c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -136,5 +136,7 @@ rec { types-aiobotocore-cloudcontrol = buildTypesAiobotocorePackage "cloudcontrol" "2.6.0" "sha256-qWbYfegOQ6QcEWA/gce9ZiIOBIVeWIj1qjfsksncDxY="; + types-aiobotocore-clouddirectory = buildTypesAiobotocorePackage "clouddirectory" "2.6.0" "sha256-5TzDHj/t0tqxbRYfnGRP9LNq9pSFj7aidadVB03ZY1k="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 96cea1495baa..0d5ba7ecc2c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14237,6 +14237,8 @@ self: super: with self; { types-aiobotocore-cloudcontrol + types-aiobotocore-clouddirectory + types-aiobotocore-xray ; From fe9b52e8e90e36016f3336ed212826f377351b9d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:37 -0700 Subject: [PATCH 054/420] python3Packages.types-aiobotocore-cloudformation: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index eb46f685c99c..483d7d877065 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -138,5 +138,7 @@ rec { types-aiobotocore-clouddirectory = buildTypesAiobotocorePackage "clouddirectory" "2.6.0" "sha256-5TzDHj/t0tqxbRYfnGRP9LNq9pSFj7aidadVB03ZY1k="; + types-aiobotocore-cloudformation = buildTypesAiobotocorePackage "cloudformation" "2.6.0" "sha256-EyiQY0NCVa3XuRpBH7aXEA7cBx8BzyRP917f/Ogx0mw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0d5ba7ecc2c7..add94df3c3d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14239,6 +14239,8 @@ self: super: with self; { types-aiobotocore-clouddirectory + types-aiobotocore-cloudformation + types-aiobotocore-xray ; From 7ff8bbe80f89f28d41e41c2b5de97ebcf66b4d2c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:42 -0700 Subject: [PATCH 055/420] python3Packages.types-aiobotocore-cloudfront: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 483d7d877065..823388456b84 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -140,5 +140,7 @@ rec { types-aiobotocore-cloudformation = buildTypesAiobotocorePackage "cloudformation" "2.6.0" "sha256-EyiQY0NCVa3XuRpBH7aXEA7cBx8BzyRP917f/Ogx0mw="; + types-aiobotocore-cloudfront = buildTypesAiobotocorePackage "cloudfront" "2.6.0" "sha256-f9nqoXlg7sgY2QCkE1/+Q72N/8Besrl6gncmU+vNt/I="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index add94df3c3d9..4883d0d660d8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14241,6 +14241,8 @@ self: super: with self; { types-aiobotocore-cloudformation + types-aiobotocore-cloudfront + types-aiobotocore-xray ; From d20f96de1a9cb5e55cc7bd6877689a5124b3ca6f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:46 -0700 Subject: [PATCH 056/420] python3Packages.types-aiobotocore-cloudhsm: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 823388456b84..29bed2aacf1f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -142,5 +142,7 @@ rec { types-aiobotocore-cloudfront = buildTypesAiobotocorePackage "cloudfront" "2.6.0" "sha256-f9nqoXlg7sgY2QCkE1/+Q72N/8Besrl6gncmU+vNt/I="; + types-aiobotocore-cloudhsm = buildTypesAiobotocorePackage "cloudhsm" "2.6.0" "sha256-a3QRjQhW+cRJykNjhhJREGwuZxR0b+WxgRuS2yuGcTQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4883d0d660d8..63788443367c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14243,6 +14243,8 @@ self: super: with self; { types-aiobotocore-cloudfront + types-aiobotocore-cloudhsm + types-aiobotocore-xray ; From 89d5e8a139e286796a1b9d06a7a84a1d3b9bb61c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:51 -0700 Subject: [PATCH 057/420] python3Packages.types-aiobotocore-cloudhsmv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 29bed2aacf1f..991a461eafa4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -144,5 +144,7 @@ rec { types-aiobotocore-cloudhsm = buildTypesAiobotocorePackage "cloudhsm" "2.6.0" "sha256-a3QRjQhW+cRJykNjhhJREGwuZxR0b+WxgRuS2yuGcTQ="; + types-aiobotocore-cloudhsmv2 = buildTypesAiobotocorePackage "cloudhsmv2" "2.6.0" "sha256-FyktFlTQAbS6YnoXljvtn6CabJHGLkRv1jCgb9dbz+s="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 63788443367c..576bacb32bdf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14245,6 +14245,8 @@ self: super: with self; { types-aiobotocore-cloudhsm + types-aiobotocore-cloudhsmv2 + types-aiobotocore-xray ; From 800014bf9716861e89ff68be00a92e86f58d004a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:55:55 -0700 Subject: [PATCH 058/420] python3Packages.types-aiobotocore-cloudsearch: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 991a461eafa4..5e156a518cb1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -146,5 +146,7 @@ rec { types-aiobotocore-cloudhsmv2 = buildTypesAiobotocorePackage "cloudhsmv2" "2.6.0" "sha256-FyktFlTQAbS6YnoXljvtn6CabJHGLkRv1jCgb9dbz+s="; + types-aiobotocore-cloudsearch = buildTypesAiobotocorePackage "cloudsearch" "2.6.0" "sha256-eKLM+GYjbm3cweMtF/XI6k+P8t9gaJeRCeMHQbc832g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 576bacb32bdf..75f792858758 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14247,6 +14247,8 @@ self: super: with self; { types-aiobotocore-cloudhsmv2 + types-aiobotocore-cloudsearch + types-aiobotocore-xray ; From 2cc63240b167709192d31cc1572903c42680964c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:00 -0700 Subject: [PATCH 059/420] python3Packages.types-aiobotocore-cloudsearchdomain: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5e156a518cb1..4eceb58b2a67 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -148,5 +148,7 @@ rec { types-aiobotocore-cloudsearch = buildTypesAiobotocorePackage "cloudsearch" "2.6.0" "sha256-eKLM+GYjbm3cweMtF/XI6k+P8t9gaJeRCeMHQbc832g="; + types-aiobotocore-cloudsearchdomain = buildTypesAiobotocorePackage "cloudsearchdomain" "2.6.0" "sha256-wn03HlgBaZIAkw8gxPehSKpcfQGOhYp0U1CF/84M/lg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 75f792858758..23c74b5d4c77 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14249,6 +14249,8 @@ self: super: with self; { types-aiobotocore-cloudsearch + types-aiobotocore-cloudsearchdomain + types-aiobotocore-xray ; From 1fa07a8859c0d3396aa2c84da482f6ee97bba484 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:04 -0700 Subject: [PATCH 060/420] python3Packages.types-aiobotocore-cloudtrail: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4eceb58b2a67..ccd6d8a59ca3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -150,5 +150,7 @@ rec { types-aiobotocore-cloudsearchdomain = buildTypesAiobotocorePackage "cloudsearchdomain" "2.6.0" "sha256-wn03HlgBaZIAkw8gxPehSKpcfQGOhYp0U1CF/84M/lg="; + types-aiobotocore-cloudtrail = buildTypesAiobotocorePackage "cloudtrail" "2.6.0" "sha256-/vpOE8tU7SsjHmn/YyVfku05ZGBZIiVuFsG6aK47K28="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23c74b5d4c77..bb2bd65dce7b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14251,6 +14251,8 @@ self: super: with self; { types-aiobotocore-cloudsearchdomain + types-aiobotocore-cloudtrail + types-aiobotocore-xray ; From 7874d5fcfcb63f7a7aa15fe91b9b9bf67aaeed70 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:08 -0700 Subject: [PATCH 061/420] python3Packages.types-aiobotocore-cloudtrail-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ccd6d8a59ca3..da7986c8c395 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -152,5 +152,7 @@ rec { types-aiobotocore-cloudtrail = buildTypesAiobotocorePackage "cloudtrail" "2.6.0" "sha256-/vpOE8tU7SsjHmn/YyVfku05ZGBZIiVuFsG6aK47K28="; + types-aiobotocore-cloudtrail-data = buildTypesAiobotocorePackage "cloudtrail-data" "2.6.0" "sha256-8W7TrB1EXp5JeBQ9xqkqFhf+Frflpd5bfVxpqju2ZPM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bb2bd65dce7b..121b87accb2b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14253,6 +14253,8 @@ self: super: with self; { types-aiobotocore-cloudtrail + types-aiobotocore-cloudtrail-data + types-aiobotocore-xray ; From 55766ea2954e9d79338bd7efa3eb21935425efa1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:13 -0700 Subject: [PATCH 062/420] python3Packages.types-aiobotocore-cloudwatch: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index da7986c8c395..ae477f4e0d08 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -154,5 +154,7 @@ rec { types-aiobotocore-cloudtrail-data = buildTypesAiobotocorePackage "cloudtrail-data" "2.6.0" "sha256-8W7TrB1EXp5JeBQ9xqkqFhf+Frflpd5bfVxpqju2ZPM="; + types-aiobotocore-cloudwatch = buildTypesAiobotocorePackage "cloudwatch" "2.6.0" "sha256-ntQkDjM3I3wuMH5jsifODEwRna2ctRW1M9bzyEjIF7w="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 121b87accb2b..ce3aefd59979 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14255,6 +14255,8 @@ self: super: with self; { types-aiobotocore-cloudtrail-data + types-aiobotocore-cloudwatch + types-aiobotocore-xray ; From 69ee167fed618dbde46a41f8fc8af92a692e4023 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:18 -0700 Subject: [PATCH 063/420] python3Packages.types-aiobotocore-codeartifact: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ae477f4e0d08..6c170dec8c4b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -156,5 +156,7 @@ rec { types-aiobotocore-cloudwatch = buildTypesAiobotocorePackage "cloudwatch" "2.6.0" "sha256-ntQkDjM3I3wuMH5jsifODEwRna2ctRW1M9bzyEjIF7w="; + types-aiobotocore-codeartifact = buildTypesAiobotocorePackage "codeartifact" "2.6.0" "sha256-NuMqaomry4ezNNRKBLOJ0xNwGUO2Prl4nf/5O38oyqI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ce3aefd59979..0fe05618a825 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14257,6 +14257,8 @@ self: super: with self; { types-aiobotocore-cloudwatch + types-aiobotocore-codeartifact + types-aiobotocore-xray ; From cff477e2e0f7a9824a411a2b76bbc36faea76319 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:22 -0700 Subject: [PATCH 064/420] python3Packages.types-aiobotocore-codebuild: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6c170dec8c4b..af7e02530d02 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -158,5 +158,7 @@ rec { types-aiobotocore-codeartifact = buildTypesAiobotocorePackage "codeartifact" "2.6.0" "sha256-NuMqaomry4ezNNRKBLOJ0xNwGUO2Prl4nf/5O38oyqI="; + types-aiobotocore-codebuild = buildTypesAiobotocorePackage "codebuild" "2.6.0" "sha256-dYe3uLk0ssQPQPEo+3glh+ic6recgV5WPIN09lLuuA4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0fe05618a825..35976829a075 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14259,6 +14259,8 @@ self: super: with self; { types-aiobotocore-codeartifact + types-aiobotocore-codebuild + types-aiobotocore-xray ; From 630e16e2f89b59ba528892627a75b2727a5f6f80 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:27 -0700 Subject: [PATCH 065/420] python3Packages.types-aiobotocore-codecatalyst: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index af7e02530d02..8190abc6fbb3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -160,5 +160,7 @@ rec { types-aiobotocore-codebuild = buildTypesAiobotocorePackage "codebuild" "2.6.0" "sha256-dYe3uLk0ssQPQPEo+3glh+ic6recgV5WPIN09lLuuA4="; + types-aiobotocore-codecatalyst = buildTypesAiobotocorePackage "codecatalyst" "2.6.0" "sha256-7MKRVJ4fgberRmkHWHfvrfzU2+BYhMZxgb2ge7NAQp4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 35976829a075..598d6e08a41e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14261,6 +14261,8 @@ self: super: with self; { types-aiobotocore-codebuild + types-aiobotocore-codecatalyst + types-aiobotocore-xray ; From 2cbfc499a885daa6323b55cb95dc5e10cc887e78 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:31 -0700 Subject: [PATCH 066/420] python3Packages.types-aiobotocore-codecommit: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8190abc6fbb3..f966278a287d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -162,5 +162,7 @@ rec { types-aiobotocore-codecatalyst = buildTypesAiobotocorePackage "codecatalyst" "2.6.0" "sha256-7MKRVJ4fgberRmkHWHfvrfzU2+BYhMZxgb2ge7NAQp4="; + types-aiobotocore-codecommit = buildTypesAiobotocorePackage "codecommit" "2.6.0" "sha256-7StmPVxVNfFpqQmjyM4cn9NBrAsuUjxRkP0WgGCnuso="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 598d6e08a41e..7655b8f597df 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14263,6 +14263,8 @@ self: super: with self; { types-aiobotocore-codecatalyst + types-aiobotocore-codecommit + types-aiobotocore-xray ; From f77d01a148eaaf7667984d56faccb91c3e905ae9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:36 -0700 Subject: [PATCH 067/420] python3Packages.types-aiobotocore-codedeploy: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f966278a287d..93e042cb8a91 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -164,5 +164,7 @@ rec { types-aiobotocore-codecommit = buildTypesAiobotocorePackage "codecommit" "2.6.0" "sha256-7StmPVxVNfFpqQmjyM4cn9NBrAsuUjxRkP0WgGCnuso="; + types-aiobotocore-codedeploy = buildTypesAiobotocorePackage "codedeploy" "2.6.0" "sha256-4TUcqf3kuRqsMjhfrUTX3/aOSl43NtwmbSgM6KtjAlk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7655b8f597df..1b9ff485e6e5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14265,6 +14265,8 @@ self: super: with self; { types-aiobotocore-codecommit + types-aiobotocore-codedeploy + types-aiobotocore-xray ; From 6489b7ea2bbcadb3726f01cc88da1d8cf2b1914d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:41 -0700 Subject: [PATCH 068/420] python3Packages.types-aiobotocore-codeguru-reviewer: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 93e042cb8a91..fc8a0a459734 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -166,5 +166,7 @@ rec { types-aiobotocore-codedeploy = buildTypesAiobotocorePackage "codedeploy" "2.6.0" "sha256-4TUcqf3kuRqsMjhfrUTX3/aOSl43NtwmbSgM6KtjAlk="; + types-aiobotocore-codeguru-reviewer = buildTypesAiobotocorePackage "codeguru-reviewer" "2.6.0" "sha256-qD42WySh9NpQBOveTRGP3hIp8zD1Y1DzSiM7kbbfR88="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1b9ff485e6e5..66116f52d6d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14267,6 +14267,8 @@ self: super: with self; { types-aiobotocore-codedeploy + types-aiobotocore-codeguru-reviewer + types-aiobotocore-xray ; From 9ec6b3af09171b623b841b404766f56a472d1119 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:45 -0700 Subject: [PATCH 069/420] python3Packages.types-aiobotocore-codeguru-security: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fc8a0a459734..8b32d0aef0e8 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -168,5 +168,7 @@ rec { types-aiobotocore-codeguru-reviewer = buildTypesAiobotocorePackage "codeguru-reviewer" "2.6.0" "sha256-qD42WySh9NpQBOveTRGP3hIp8zD1Y1DzSiM7kbbfR88="; + types-aiobotocore-codeguru-security = buildTypesAiobotocorePackage "codeguru-security" "2.6.0" "sha256-1qgsFoogu8MnWoCeKnqy4KIY7UdMeUPnaS1zVSVl2Mg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 66116f52d6d4..bc1500171ea8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14269,6 +14269,8 @@ self: super: with self; { types-aiobotocore-codeguru-reviewer + types-aiobotocore-codeguru-security + types-aiobotocore-xray ; From 780a0b9c9341064b69326cfa887656d415ec79d9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:50 -0700 Subject: [PATCH 070/420] python3Packages.types-aiobotocore-codeguruprofiler: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8b32d0aef0e8..a5a98ed8e614 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -170,5 +170,7 @@ rec { types-aiobotocore-codeguru-security = buildTypesAiobotocorePackage "codeguru-security" "2.6.0" "sha256-1qgsFoogu8MnWoCeKnqy4KIY7UdMeUPnaS1zVSVl2Mg="; + types-aiobotocore-codeguruprofiler = buildTypesAiobotocorePackage "codeguruprofiler" "2.6.0" "sha256-7Nbb+l7y5ccrVGymZ46nKwnGoa5nThrIOZ1AG0ykPEw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bc1500171ea8..24881b96b022 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14271,6 +14271,8 @@ self: super: with self; { types-aiobotocore-codeguru-security + types-aiobotocore-codeguruprofiler + types-aiobotocore-xray ; From 1b964be87ed57d2d5fe159a4425532d53d3d9787 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:54 -0700 Subject: [PATCH 071/420] python3Packages.types-aiobotocore-codepipeline: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a5a98ed8e614..4867c10df54a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -172,5 +172,7 @@ rec { types-aiobotocore-codeguruprofiler = buildTypesAiobotocorePackage "codeguruprofiler" "2.6.0" "sha256-7Nbb+l7y5ccrVGymZ46nKwnGoa5nThrIOZ1AG0ykPEw="; + types-aiobotocore-codepipeline = buildTypesAiobotocorePackage "codepipeline" "2.6.0" "sha256-cIvM4g/CldgLuN10a3lNhISz08gT6VxZHMS5xo+B2IA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 24881b96b022..b39fc2f35a72 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14273,6 +14273,8 @@ self: super: with self; { types-aiobotocore-codeguruprofiler + types-aiobotocore-codepipeline + types-aiobotocore-xray ; From ae97859b5d3154d59491d25f1c7284a606224417 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:56:59 -0700 Subject: [PATCH 072/420] python3Packages.types-aiobotocore-codestar: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4867c10df54a..a5e5831b7d8c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -174,5 +174,7 @@ rec { types-aiobotocore-codepipeline = buildTypesAiobotocorePackage "codepipeline" "2.6.0" "sha256-cIvM4g/CldgLuN10a3lNhISz08gT6VxZHMS5xo+B2IA="; + types-aiobotocore-codestar = buildTypesAiobotocorePackage "codestar" "2.6.0" "sha256-6b3QfRecmprhRU+loWafrcL1mWNLFmZXZOAhUMkpGqU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b39fc2f35a72..4f094ce13a60 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14275,6 +14275,8 @@ self: super: with self; { types-aiobotocore-codepipeline + types-aiobotocore-codestar + types-aiobotocore-xray ; From f709b76560ff8ae20423531df449506ca34f4f46 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:04 -0700 Subject: [PATCH 073/420] python3Packages.types-aiobotocore-codestar-connections: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a5e5831b7d8c..0c6abc7a21d4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -176,5 +176,7 @@ rec { types-aiobotocore-codestar = buildTypesAiobotocorePackage "codestar" "2.6.0" "sha256-6b3QfRecmprhRU+loWafrcL1mWNLFmZXZOAhUMkpGqU="; + types-aiobotocore-codestar-connections = buildTypesAiobotocorePackage "codestar-connections" "2.6.0" "sha256-D/icEGVsuYSU7hCw2VEojLTkdaBcK6SoEZqpvD/NKV0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4f094ce13a60..d124c1225d56 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14277,6 +14277,8 @@ self: super: with self; { types-aiobotocore-codestar + types-aiobotocore-codestar-connections + types-aiobotocore-xray ; From cecefa16599f8848038ca9b50f543df063979ff5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:08 -0700 Subject: [PATCH 074/420] python3Packages.types-aiobotocore-codestar-notifications: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0c6abc7a21d4..254dd01ac7dc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -178,5 +178,7 @@ rec { types-aiobotocore-codestar-connections = buildTypesAiobotocorePackage "codestar-connections" "2.6.0" "sha256-D/icEGVsuYSU7hCw2VEojLTkdaBcK6SoEZqpvD/NKV0="; + types-aiobotocore-codestar-notifications = buildTypesAiobotocorePackage "codestar-notifications" "2.6.0" "sha256-7vWHwrG7Z80Zb3ncGBqN4ItKAVWLR0XHITJxMmE8y8Y="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d124c1225d56..4c2f25019e47 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14279,6 +14279,8 @@ self: super: with self; { types-aiobotocore-codestar-connections + types-aiobotocore-codestar-notifications + types-aiobotocore-xray ; From 448e3f9d5172122fe3f69abadb2099a67056ba75 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:12 -0700 Subject: [PATCH 075/420] python3Packages.types-aiobotocore-cognito-identity: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 254dd01ac7dc..e3fb7dc5e63b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -180,5 +180,7 @@ rec { types-aiobotocore-codestar-notifications = buildTypesAiobotocorePackage "codestar-notifications" "2.6.0" "sha256-7vWHwrG7Z80Zb3ncGBqN4ItKAVWLR0XHITJxMmE8y8Y="; + types-aiobotocore-cognito-identity = buildTypesAiobotocorePackage "cognito-identity" "2.6.0" "sha256-C1JRefgyuiKDOJMhShyDPDjfKp5S5OMCaHcnORLxnvY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4c2f25019e47..f3b3c0622d2a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14281,6 +14281,8 @@ self: super: with self; { types-aiobotocore-codestar-notifications + types-aiobotocore-cognito-identity + types-aiobotocore-xray ; From 8302c75461f3e3a01e09a64d573492ebce8fb2e7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:17 -0700 Subject: [PATCH 076/420] python3Packages.types-aiobotocore-cognito-idp: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e3fb7dc5e63b..7c300cadb6a5 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -182,5 +182,7 @@ rec { types-aiobotocore-cognito-identity = buildTypesAiobotocorePackage "cognito-identity" "2.6.0" "sha256-C1JRefgyuiKDOJMhShyDPDjfKp5S5OMCaHcnORLxnvY="; + types-aiobotocore-cognito-idp = buildTypesAiobotocorePackage "cognito-idp" "2.6.0" "sha256-ks8MmuhrmdTS509vgxZ0raZqISMPaAItEjf93ppWhrU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3b3c0622d2a..27a5606d3d9c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14283,6 +14283,8 @@ self: super: with self; { types-aiobotocore-cognito-identity + types-aiobotocore-cognito-idp + types-aiobotocore-xray ; From 8457fbba0d1f851bf42d5ee9fcb55a534f96aacc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:21 -0700 Subject: [PATCH 077/420] python3Packages.types-aiobotocore-cognito-sync: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7c300cadb6a5..8115361e9d31 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -184,5 +184,7 @@ rec { types-aiobotocore-cognito-idp = buildTypesAiobotocorePackage "cognito-idp" "2.6.0" "sha256-ks8MmuhrmdTS509vgxZ0raZqISMPaAItEjf93ppWhrU="; + types-aiobotocore-cognito-sync = buildTypesAiobotocorePackage "cognito-sync" "2.6.0" "sha256-pOLa8tDqPexDigPbRqTjnr7/ricz92/Ml79AyUXvXBg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 27a5606d3d9c..858413fe1ea3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14285,6 +14285,8 @@ self: super: with self; { types-aiobotocore-cognito-idp + types-aiobotocore-cognito-sync + types-aiobotocore-xray ; From 59fc75728edad58b4ceb9252c01adf251f80da07 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:26 -0700 Subject: [PATCH 078/420] python3Packages.types-aiobotocore-comprehend: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8115361e9d31..94becd1c5727 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -186,5 +186,7 @@ rec { types-aiobotocore-cognito-sync = buildTypesAiobotocorePackage "cognito-sync" "2.6.0" "sha256-pOLa8tDqPexDigPbRqTjnr7/ricz92/Ml79AyUXvXBg="; + types-aiobotocore-comprehend = buildTypesAiobotocorePackage "comprehend" "2.6.0" "sha256-qXIwjiNksQbQiTtwaKWNHaUCras/moRuFXN3sOEPYMc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 858413fe1ea3..c328ffe061a1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14287,6 +14287,8 @@ self: super: with self; { types-aiobotocore-cognito-sync + types-aiobotocore-comprehend + types-aiobotocore-xray ; From 2ca2aec27e4bf145a6dcbc288cc2ad18fd55a51a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:30 -0700 Subject: [PATCH 079/420] python3Packages.types-aiobotocore-comprehendmedical: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 94becd1c5727..d9d6ead9aba4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -188,5 +188,7 @@ rec { types-aiobotocore-comprehend = buildTypesAiobotocorePackage "comprehend" "2.6.0" "sha256-qXIwjiNksQbQiTtwaKWNHaUCras/moRuFXN3sOEPYMc="; + types-aiobotocore-comprehendmedical = buildTypesAiobotocorePackage "comprehendmedical" "2.6.0" "sha256-C98s7dkFRgj8m4M+MmjvCWwrdohkLJafgo9j2ACQ2l4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c328ffe061a1..bda25747ea93 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14289,6 +14289,8 @@ self: super: with self; { types-aiobotocore-comprehend + types-aiobotocore-comprehendmedical + types-aiobotocore-xray ; From d512835395dff376189b7863a626ddf7481bb6e9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:35 -0700 Subject: [PATCH 080/420] python3Packages.types-aiobotocore-compute-optimizer: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d9d6ead9aba4..58d9a774c891 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -190,5 +190,7 @@ rec { types-aiobotocore-comprehendmedical = buildTypesAiobotocorePackage "comprehendmedical" "2.6.0" "sha256-C98s7dkFRgj8m4M+MmjvCWwrdohkLJafgo9j2ACQ2l4="; + types-aiobotocore-compute-optimizer = buildTypesAiobotocorePackage "compute-optimizer" "2.6.0" "sha256-4MRGtyFWceAuspTW6Xqwjf2ta0VC1SIoK/U80QZw7UA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bda25747ea93..5ae10b461a0b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14291,6 +14291,8 @@ self: super: with self; { types-aiobotocore-comprehendmedical + types-aiobotocore-compute-optimizer + types-aiobotocore-xray ; From d0c501df7fab53541e67a6532aa637689662a2d4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:40 -0700 Subject: [PATCH 081/420] python3Packages.types-aiobotocore-config: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 58d9a774c891..fe9ec236d5c2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -192,5 +192,7 @@ rec { types-aiobotocore-compute-optimizer = buildTypesAiobotocorePackage "compute-optimizer" "2.6.0" "sha256-4MRGtyFWceAuspTW6Xqwjf2ta0VC1SIoK/U80QZw7UA="; + types-aiobotocore-config = buildTypesAiobotocorePackage "config" "2.6.0" "sha256-qW+R5X/fu784kjARjISaNxwzIJn74SXfUaPEuGqsM1M="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5ae10b461a0b..b5ce8f3bb930 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14293,6 +14293,8 @@ self: super: with self; { types-aiobotocore-compute-optimizer + types-aiobotocore-config + types-aiobotocore-xray ; From 686247ac2e5644a65ce0a0297d856ad2547b9323 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:44 -0700 Subject: [PATCH 082/420] python3Packages.types-aiobotocore-connect: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fe9ec236d5c2..ac65183ad2f6 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -194,5 +194,7 @@ rec { types-aiobotocore-config = buildTypesAiobotocorePackage "config" "2.6.0" "sha256-qW+R5X/fu784kjARjISaNxwzIJn74SXfUaPEuGqsM1M="; + types-aiobotocore-connect = buildTypesAiobotocorePackage "connect" "2.6.0" "sha256-d+7VqW5H0hyINQVXoy6djyFmkGzlhLnEpzURuPQLyBc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b5ce8f3bb930..1c7e33ad251e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14295,6 +14295,8 @@ self: super: with self; { types-aiobotocore-config + types-aiobotocore-connect + types-aiobotocore-xray ; From 81f3413215b4f224aa0e6aad4151f0f7e909c9c7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:49 -0700 Subject: [PATCH 083/420] python3Packages.types-aiobotocore-connect-contact-lens: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ac65183ad2f6..fea8ebee02de 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -196,5 +196,7 @@ rec { types-aiobotocore-connect = buildTypesAiobotocorePackage "connect" "2.6.0" "sha256-d+7VqW5H0hyINQVXoy6djyFmkGzlhLnEpzURuPQLyBc="; + types-aiobotocore-connect-contact-lens = buildTypesAiobotocorePackage "connect-contact-lens" "2.6.0" "sha256-3d2WJQpohaiwdsKOS2u5kNhHVsgELMxgjunHAk6v7Y8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1c7e33ad251e..71918dd39639 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14297,6 +14297,8 @@ self: super: with self; { types-aiobotocore-connect + types-aiobotocore-connect-contact-lens + types-aiobotocore-xray ; From 4db886523d1d12cdf86d030a12b79f1360eafbf5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:54 -0700 Subject: [PATCH 084/420] python3Packages.types-aiobotocore-connectcampaigns: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fea8ebee02de..1fcbf8a1a619 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -198,5 +198,7 @@ rec { types-aiobotocore-connect-contact-lens = buildTypesAiobotocorePackage "connect-contact-lens" "2.6.0" "sha256-3d2WJQpohaiwdsKOS2u5kNhHVsgELMxgjunHAk6v7Y8="; + types-aiobotocore-connectcampaigns = buildTypesAiobotocorePackage "connectcampaigns" "2.6.0" "sha256-lsDs0yxFf4ForZ2bU719LFCDHzR9lOE211XuYGYKZCw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 71918dd39639..29825d7913a9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14299,6 +14299,8 @@ self: super: with self; { types-aiobotocore-connect-contact-lens + types-aiobotocore-connectcampaigns + types-aiobotocore-xray ; From 3913775d00f9ef90f18be902ef865cf3f6e4a182 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:57:58 -0700 Subject: [PATCH 085/420] python3Packages.types-aiobotocore-connectcases: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1fcbf8a1a619..fac7275b9c65 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -200,5 +200,7 @@ rec { types-aiobotocore-connectcampaigns = buildTypesAiobotocorePackage "connectcampaigns" "2.6.0" "sha256-lsDs0yxFf4ForZ2bU719LFCDHzR9lOE211XuYGYKZCw="; + types-aiobotocore-connectcases = buildTypesAiobotocorePackage "connectcases" "2.6.0" "sha256-/MRl46K5h5mtboGhWDop0psxPyxhm3tKhzvMpr91d/w="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 29825d7913a9..6120dd126e96 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14301,6 +14301,8 @@ self: super: with self; { types-aiobotocore-connectcampaigns + types-aiobotocore-connectcases + types-aiobotocore-xray ; From c7bfe79ab74e97c0a6560755d0500f9236e61954 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:03 -0700 Subject: [PATCH 086/420] python3Packages.types-aiobotocore-connectparticipant: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fac7275b9c65..14955df479ae 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -202,5 +202,7 @@ rec { types-aiobotocore-connectcases = buildTypesAiobotocorePackage "connectcases" "2.6.0" "sha256-/MRl46K5h5mtboGhWDop0psxPyxhm3tKhzvMpr91d/w="; + types-aiobotocore-connectparticipant = buildTypesAiobotocorePackage "connectparticipant" "2.6.0" "sha256-3E+8scTPCcNm8RDoxGWSm/u6drT12aiFqf3LbxWTy8w="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6120dd126e96..b47d7c173b18 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14303,6 +14303,8 @@ self: super: with self; { types-aiobotocore-connectcases + types-aiobotocore-connectparticipant + types-aiobotocore-xray ; From 3116908fd59e6472c5d565a4450d9dfc1f333717 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:07 -0700 Subject: [PATCH 087/420] python3Packages.types-aiobotocore-controltower: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 14955df479ae..bfcf653dc51b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -204,5 +204,7 @@ rec { types-aiobotocore-connectparticipant = buildTypesAiobotocorePackage "connectparticipant" "2.6.0" "sha256-3E+8scTPCcNm8RDoxGWSm/u6drT12aiFqf3LbxWTy8w="; + types-aiobotocore-controltower = buildTypesAiobotocorePackage "controltower" "2.6.0" "sha256-Df25Lah8FBdCrbWMC+Y9ayQCO3ijG8cMdypA2+sE3oY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b47d7c173b18..b68b022697ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14305,6 +14305,8 @@ self: super: with self; { types-aiobotocore-connectparticipant + types-aiobotocore-controltower + types-aiobotocore-xray ; From 1a599a6b8af6571cb4433b67f7a93bc8799e66e2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:12 -0700 Subject: [PATCH 088/420] python3Packages.types-aiobotocore-cur: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bfcf653dc51b..ac9d691d1e4a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -206,5 +206,7 @@ rec { types-aiobotocore-controltower = buildTypesAiobotocorePackage "controltower" "2.6.0" "sha256-Df25Lah8FBdCrbWMC+Y9ayQCO3ijG8cMdypA2+sE3oY="; + types-aiobotocore-cur = buildTypesAiobotocorePackage "cur" "2.6.0" "sha256-i+n53Eejdz26WGsHBmLR3V0ZxOBHPtTTzoxH0mmKPig="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b68b022697ee..29f48bcfcafb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14307,6 +14307,8 @@ self: super: with self; { types-aiobotocore-controltower + types-aiobotocore-cur + types-aiobotocore-xray ; From 820b17d4599748820ee9ad58429474ec09ea32c0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:16 -0700 Subject: [PATCH 089/420] python3Packages.types-aiobotocore-customer-profiles: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ac9d691d1e4a..91b8b04f8dd6 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -208,5 +208,7 @@ rec { types-aiobotocore-cur = buildTypesAiobotocorePackage "cur" "2.6.0" "sha256-i+n53Eejdz26WGsHBmLR3V0ZxOBHPtTTzoxH0mmKPig="; + types-aiobotocore-customer-profiles = buildTypesAiobotocorePackage "customer-profiles" "2.6.0" "sha256-i1mv2M3bboOF3+iIKYhp4raYb7mHiQTirlWsttB/dXY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 29f48bcfcafb..3c73a77f8363 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14309,6 +14309,8 @@ self: super: with self; { types-aiobotocore-cur + types-aiobotocore-customer-profiles + types-aiobotocore-xray ; From 9e86f920b20a5d5c358eac6ed3a9d1ff247d99df Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:21 -0700 Subject: [PATCH 090/420] python3Packages.types-aiobotocore-databrew: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 91b8b04f8dd6..8a3bfee586a9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -210,5 +210,7 @@ rec { types-aiobotocore-customer-profiles = buildTypesAiobotocorePackage "customer-profiles" "2.6.0" "sha256-i1mv2M3bboOF3+iIKYhp4raYb7mHiQTirlWsttB/dXY="; + types-aiobotocore-databrew = buildTypesAiobotocorePackage "databrew" "2.6.0" "sha256-WMVPGbQkdbKc2T+gR9P3oWUxl5VSVf4IdcLeuW9SNUo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3c73a77f8363..fdcabe8b19d5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14311,6 +14311,8 @@ self: super: with self; { types-aiobotocore-customer-profiles + types-aiobotocore-databrew + types-aiobotocore-xray ; From 2a3558bc9b56ecf5853c55d1bca36e05b260d676 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:25 -0700 Subject: [PATCH 091/420] python3Packages.types-aiobotocore-dataexchange: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8a3bfee586a9..0ca71e273ba7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -212,5 +212,7 @@ rec { types-aiobotocore-databrew = buildTypesAiobotocorePackage "databrew" "2.6.0" "sha256-WMVPGbQkdbKc2T+gR9P3oWUxl5VSVf4IdcLeuW9SNUo="; + types-aiobotocore-dataexchange = buildTypesAiobotocorePackage "dataexchange" "2.6.0" "sha256-okcgm0Lx5s2AM2mprVwNjeI1TTmlR73FgjWbYa9uRdE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fdcabe8b19d5..091d395374c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14313,6 +14313,8 @@ self: super: with self; { types-aiobotocore-databrew + types-aiobotocore-dataexchange + types-aiobotocore-xray ; From 5908f497d92ff80cd9c139573663c893de8ced2c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:30 -0700 Subject: [PATCH 092/420] python3Packages.types-aiobotocore-datapipeline: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0ca71e273ba7..7145bf25c074 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -214,5 +214,7 @@ rec { types-aiobotocore-dataexchange = buildTypesAiobotocorePackage "dataexchange" "2.6.0" "sha256-okcgm0Lx5s2AM2mprVwNjeI1TTmlR73FgjWbYa9uRdE="; + types-aiobotocore-datapipeline = buildTypesAiobotocorePackage "datapipeline" "2.6.0" "sha256-k0tYIWqPEnETISThasPHa9AaWdAs0p+hfrUuCI7VTJk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 091d395374c9..3fb91b93f1ae 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14315,6 +14315,8 @@ self: super: with self; { types-aiobotocore-dataexchange + types-aiobotocore-datapipeline + types-aiobotocore-xray ; From f133f2ba6eb543bd0b62d5b92a2cb0f8563cd877 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:34 -0700 Subject: [PATCH 093/420] python3Packages.types-aiobotocore-datasync: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7145bf25c074..4ec0d1f74c32 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -216,5 +216,7 @@ rec { types-aiobotocore-datapipeline = buildTypesAiobotocorePackage "datapipeline" "2.6.0" "sha256-k0tYIWqPEnETISThasPHa9AaWdAs0p+hfrUuCI7VTJk="; + types-aiobotocore-datasync = buildTypesAiobotocorePackage "datasync" "2.6.0" "sha256-C138viPl57+Z79k1C0c4IjgdpMd4PhO352fUs6/YnE0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3fb91b93f1ae..2b700dab4426 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14317,6 +14317,8 @@ self: super: with self; { types-aiobotocore-datapipeline + types-aiobotocore-datasync + types-aiobotocore-xray ; From 83f15a20f2f85b54b997aba95de4f1ccfd1a2f85 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:39 -0700 Subject: [PATCH 094/420] python3Packages.types-aiobotocore-dax: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4ec0d1f74c32..43a2514de7ee 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -218,5 +218,7 @@ rec { types-aiobotocore-datasync = buildTypesAiobotocorePackage "datasync" "2.6.0" "sha256-C138viPl57+Z79k1C0c4IjgdpMd4PhO352fUs6/YnE0="; + types-aiobotocore-dax = buildTypesAiobotocorePackage "dax" "2.6.0" "sha256-1BtV4vajDTlmNhX4oh1h81+1MsIe63gxnkd1oWn0yeI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2b700dab4426..d4046a0e2b48 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14319,6 +14319,8 @@ self: super: with self; { types-aiobotocore-datasync + types-aiobotocore-dax + types-aiobotocore-xray ; From db913d114aea17f580d421ef336a583c8dc5d638 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:43 -0700 Subject: [PATCH 095/420] python3Packages.types-aiobotocore-detective: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 43a2514de7ee..41473f00b5db 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -220,5 +220,7 @@ rec { types-aiobotocore-dax = buildTypesAiobotocorePackage "dax" "2.6.0" "sha256-1BtV4vajDTlmNhX4oh1h81+1MsIe63gxnkd1oWn0yeI="; + types-aiobotocore-detective = buildTypesAiobotocorePackage "detective" "2.6.0" "sha256-UP8rTuCwNq6Eu5gYrMj5c+JaNy9grOOL9RRi/QsDvzE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d4046a0e2b48..f9f6abfdfdf7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14321,6 +14321,8 @@ self: super: with self; { types-aiobotocore-dax + types-aiobotocore-detective + types-aiobotocore-xray ; From 949179a388df07f1994b301da2294024d9bbb34f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:47 -0700 Subject: [PATCH 096/420] python3Packages.types-aiobotocore-devicefarm: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 41473f00b5db..b7bd698244b1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -222,5 +222,7 @@ rec { types-aiobotocore-detective = buildTypesAiobotocorePackage "detective" "2.6.0" "sha256-UP8rTuCwNq6Eu5gYrMj5c+JaNy9grOOL9RRi/QsDvzE="; + types-aiobotocore-devicefarm = buildTypesAiobotocorePackage "devicefarm" "2.6.0" "sha256-Mc4Kl4dZyn9y+9V44QilacOHN9+E1M79uNLATsoH2Ks="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f9f6abfdfdf7..b402d121f349 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14323,6 +14323,8 @@ self: super: with self; { types-aiobotocore-detective + types-aiobotocore-devicefarm + types-aiobotocore-xray ; From 41243253b1faa11f79f563046ac558d05db62175 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:52 -0700 Subject: [PATCH 097/420] python3Packages.types-aiobotocore-devops-guru: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b7bd698244b1..9eb4e38487e4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -224,5 +224,7 @@ rec { types-aiobotocore-devicefarm = buildTypesAiobotocorePackage "devicefarm" "2.6.0" "sha256-Mc4Kl4dZyn9y+9V44QilacOHN9+E1M79uNLATsoH2Ks="; + types-aiobotocore-devops-guru = buildTypesAiobotocorePackage "devops-guru" "2.6.0" "sha256-pPn7O3oK75zRmOFMQmyzmRcjpRTswrVhdbkcqaI5Sj8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b402d121f349..4f4531b02129 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14325,6 +14325,8 @@ self: super: with self; { types-aiobotocore-devicefarm + types-aiobotocore-devops-guru + types-aiobotocore-xray ; From 21b30f55ebfe51a61f5eaefb8b416310237d5917 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:58:57 -0700 Subject: [PATCH 098/420] python3Packages.types-aiobotocore-directconnect: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9eb4e38487e4..3ae69e4c6552 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -226,5 +226,7 @@ rec { types-aiobotocore-devops-guru = buildTypesAiobotocorePackage "devops-guru" "2.6.0" "sha256-pPn7O3oK75zRmOFMQmyzmRcjpRTswrVhdbkcqaI5Sj8="; + types-aiobotocore-directconnect = buildTypesAiobotocorePackage "directconnect" "2.6.0" "sha256-LwbqLf3BEwW/+f6vsddXt+FiyGkRKIPXfaqW5rtDrig="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4f4531b02129..1d7713aa4e8c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14327,6 +14327,8 @@ self: super: with self; { types-aiobotocore-devops-guru + types-aiobotocore-directconnect + types-aiobotocore-xray ; From dd6114c0bcbb75d9a05fb73ef7f4916f1bb5e968 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:01 -0700 Subject: [PATCH 099/420] python3Packages.types-aiobotocore-discovery: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3ae69e4c6552..07f63a138802 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -228,5 +228,7 @@ rec { types-aiobotocore-directconnect = buildTypesAiobotocorePackage "directconnect" "2.6.0" "sha256-LwbqLf3BEwW/+f6vsddXt+FiyGkRKIPXfaqW5rtDrig="; + types-aiobotocore-discovery = buildTypesAiobotocorePackage "discovery" "2.6.0" "sha256-mBruXgMAELLGyEg7ON8PFesERMf5og8As58U9pvIKRc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1d7713aa4e8c..b462d43beb27 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14329,6 +14329,8 @@ self: super: with self; { types-aiobotocore-directconnect + types-aiobotocore-discovery + types-aiobotocore-xray ; From e4a99aaa02c395cf70fa087a44869c42fc5b35a1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:06 -0700 Subject: [PATCH 100/420] python3Packages.types-aiobotocore-dlm: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 07f63a138802..0a522d03c679 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -230,5 +230,7 @@ rec { types-aiobotocore-discovery = buildTypesAiobotocorePackage "discovery" "2.6.0" "sha256-mBruXgMAELLGyEg7ON8PFesERMf5og8As58U9pvIKRc="; + types-aiobotocore-dlm = buildTypesAiobotocorePackage "dlm" "2.6.0" "sha256-JLOVu9OlJgrfTBlmzVNN5saYO8AFk8N54hRzDAjq7WI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b462d43beb27..76dfb58a98ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14331,6 +14331,8 @@ self: super: with self; { types-aiobotocore-discovery + types-aiobotocore-dlm + types-aiobotocore-xray ; From 09ce7c385f37c8242395aab11073c58463e6b669 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:10 -0700 Subject: [PATCH 101/420] python3Packages.types-aiobotocore-dms: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0a522d03c679..92e8839f4098 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -232,5 +232,7 @@ rec { types-aiobotocore-dlm = buildTypesAiobotocorePackage "dlm" "2.6.0" "sha256-JLOVu9OlJgrfTBlmzVNN5saYO8AFk8N54hRzDAjq7WI="; + types-aiobotocore-dms = buildTypesAiobotocorePackage "dms" "2.6.0" "sha256-cWGwdGBTgEag5SeRDLvAJtCS1dAxtt5R0uanPI6RjkY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 76dfb58a98ee..4f1514f34f10 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14333,6 +14333,8 @@ self: super: with self; { types-aiobotocore-dlm + types-aiobotocore-dms + types-aiobotocore-xray ; From e4214d20fb667cf8a25e505b42a5aca511ae6cbc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:14 -0700 Subject: [PATCH 102/420] python3Packages.types-aiobotocore-docdb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 92e8839f4098..5a02edd57621 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -234,5 +234,7 @@ rec { types-aiobotocore-dms = buildTypesAiobotocorePackage "dms" "2.6.0" "sha256-cWGwdGBTgEag5SeRDLvAJtCS1dAxtt5R0uanPI6RjkY="; + types-aiobotocore-docdb = buildTypesAiobotocorePackage "docdb" "2.6.0" "sha256-yYm/H31gRIDV+r2H+8cTHkc5h40aFFUQ7zlX1wyLPAI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4f1514f34f10..724607046299 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14335,6 +14335,8 @@ self: super: with self; { types-aiobotocore-dms + types-aiobotocore-docdb + types-aiobotocore-xray ; From 371c0fb64da3bd6d7fdbb3e6b832781c739ea3d2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:19 -0700 Subject: [PATCH 103/420] python3Packages.types-aiobotocore-docdb-elastic: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5a02edd57621..d7b49f7272d1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -236,5 +236,7 @@ rec { types-aiobotocore-docdb = buildTypesAiobotocorePackage "docdb" "2.6.0" "sha256-yYm/H31gRIDV+r2H+8cTHkc5h40aFFUQ7zlX1wyLPAI="; + types-aiobotocore-docdb-elastic = buildTypesAiobotocorePackage "docdb-elastic" "2.6.0" "sha256-ro0xv2HHzTXA6tRNnr3eQjCj5iaqc1wOcsKny8j/hoQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 724607046299..1788b142950c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14337,6 +14337,8 @@ self: super: with self; { types-aiobotocore-docdb + types-aiobotocore-docdb-elastic + types-aiobotocore-xray ; From b55e69c15c4db579a1843465666b8bdff9b59cff Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:23 -0700 Subject: [PATCH 104/420] python3Packages.types-aiobotocore-drs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d7b49f7272d1..07b0a0a86635 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -238,5 +238,7 @@ rec { types-aiobotocore-docdb-elastic = buildTypesAiobotocorePackage "docdb-elastic" "2.6.0" "sha256-ro0xv2HHzTXA6tRNnr3eQjCj5iaqc1wOcsKny8j/hoQ="; + types-aiobotocore-drs = buildTypesAiobotocorePackage "drs" "2.6.0" "sha256-4CeNeftLpPSZYqw09LcPRC+8yVp+84azRHQ8O0JFOOo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1788b142950c..a8987a219b1c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14339,6 +14339,8 @@ self: super: with self; { types-aiobotocore-docdb-elastic + types-aiobotocore-drs + types-aiobotocore-xray ; From 7e3f630cf988c0f6e979038c8fb9c0f0a6b22d55 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:28 -0700 Subject: [PATCH 105/420] python3Packages.types-aiobotocore-ds: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 07b0a0a86635..8c6eebd0217a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -240,5 +240,7 @@ rec { types-aiobotocore-drs = buildTypesAiobotocorePackage "drs" "2.6.0" "sha256-4CeNeftLpPSZYqw09LcPRC+8yVp+84azRHQ8O0JFOOo="; + types-aiobotocore-ds = buildTypesAiobotocorePackage "ds" "2.6.0" "sha256-HZEA8fivN05Puxycyl+2z4kIJMbGtF0J7ohLOwx+IzM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a8987a219b1c..be58484473ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14341,6 +14341,8 @@ self: super: with self; { types-aiobotocore-drs + types-aiobotocore-ds + types-aiobotocore-xray ; From a46c7c9f6faa3b96dacd0af85c595cfd334d5008 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:33 -0700 Subject: [PATCH 106/420] python3Packages.types-aiobotocore-dynamodb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8c6eebd0217a..ec7fc6fc3bde 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -242,5 +242,7 @@ rec { types-aiobotocore-ds = buildTypesAiobotocorePackage "ds" "2.6.0" "sha256-HZEA8fivN05Puxycyl+2z4kIJMbGtF0J7ohLOwx+IzM="; + types-aiobotocore-dynamodb = buildTypesAiobotocorePackage "dynamodb" "2.6.0" "sha256-dFo/YsEQg7TXB5NENmFOv37R3B2GoN0TlIiULWEQr9I="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index be58484473ee..3e1ffd8d2f35 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14343,6 +14343,8 @@ self: super: with self; { types-aiobotocore-ds + types-aiobotocore-dynamodb + types-aiobotocore-xray ; From 8e675943844256d1c9c084412749bb35c62e61a6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:37 -0700 Subject: [PATCH 107/420] python3Packages.types-aiobotocore-dynamodbstreams: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ec7fc6fc3bde..591d057730be 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -244,5 +244,7 @@ rec { types-aiobotocore-dynamodb = buildTypesAiobotocorePackage "dynamodb" "2.6.0" "sha256-dFo/YsEQg7TXB5NENmFOv37R3B2GoN0TlIiULWEQr9I="; + types-aiobotocore-dynamodbstreams = buildTypesAiobotocorePackage "dynamodbstreams" "2.6.0" "sha256-8wsE774l7M8Qb3UiaxkAdN6sdnXs5oS4cFhncW0joBI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3e1ffd8d2f35..1e4cd550fa1e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14345,6 +14345,8 @@ self: super: with self; { types-aiobotocore-dynamodb + types-aiobotocore-dynamodbstreams + types-aiobotocore-xray ; From 553387ac6cb17d05d48604ddd56c621e632f16fc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:42 -0700 Subject: [PATCH 108/420] python3Packages.types-aiobotocore-ebs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 591d057730be..6a9078b23586 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -246,5 +246,7 @@ rec { types-aiobotocore-dynamodbstreams = buildTypesAiobotocorePackage "dynamodbstreams" "2.6.0" "sha256-8wsE774l7M8Qb3UiaxkAdN6sdnXs5oS4cFhncW0joBI="; + types-aiobotocore-ebs = buildTypesAiobotocorePackage "ebs" "2.6.0" "sha256-95lUlfOjLVgHufSv3UvaKB1K0F2N0cvtCcKh96VBtqg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1e4cd550fa1e..073bbba34b42 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14347,6 +14347,8 @@ self: super: with self; { types-aiobotocore-dynamodbstreams + types-aiobotocore-ebs + types-aiobotocore-xray ; From 30586cf25fe20659121a10dfdf8fdb2f3573ba2e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:46 -0700 Subject: [PATCH 109/420] python3Packages.types-aiobotocore-ec2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6a9078b23586..64e123d5c057 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -248,5 +248,7 @@ rec { types-aiobotocore-ebs = buildTypesAiobotocorePackage "ebs" "2.6.0" "sha256-95lUlfOjLVgHufSv3UvaKB1K0F2N0cvtCcKh96VBtqg="; + types-aiobotocore-ec2 = buildTypesAiobotocorePackage "ec2" "2.6.0" "sha256-hSuwPcQEk9Qgkc/JtcZp2vqLXnMQN9gtzjkuC1Bv1C4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 073bbba34b42..772344da7e88 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14349,6 +14349,8 @@ self: super: with self; { types-aiobotocore-ebs + types-aiobotocore-ec2 + types-aiobotocore-xray ; From 3933e85b7d6c9d675d8679b7c775c1f62a210b4a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:51 -0700 Subject: [PATCH 110/420] python3Packages.types-aiobotocore-ec2-instance-connect: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 64e123d5c057..901fff9d6418 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -250,5 +250,7 @@ rec { types-aiobotocore-ec2 = buildTypesAiobotocorePackage "ec2" "2.6.0" "sha256-hSuwPcQEk9Qgkc/JtcZp2vqLXnMQN9gtzjkuC1Bv1C4="; + types-aiobotocore-ec2-instance-connect = buildTypesAiobotocorePackage "ec2-instance-connect" "2.6.0" "sha256-0Lwxob43TzJHNcriUEa3BAZE64iqS9Js4TtfL20YRj0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 772344da7e88..41dc0b0052f6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14351,6 +14351,8 @@ self: super: with self; { types-aiobotocore-ec2 + types-aiobotocore-ec2-instance-connect + types-aiobotocore-xray ; From 1ec3c032b1d92a1cd3a97b8fa981598e8d4d6a6b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 03:59:55 -0700 Subject: [PATCH 111/420] python3Packages.types-aiobotocore-ecr: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 901fff9d6418..66cf6b5c0b01 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -252,5 +252,7 @@ rec { types-aiobotocore-ec2-instance-connect = buildTypesAiobotocorePackage "ec2-instance-connect" "2.6.0" "sha256-0Lwxob43TzJHNcriUEa3BAZE64iqS9Js4TtfL20YRj0="; + types-aiobotocore-ecr = buildTypesAiobotocorePackage "ecr" "2.6.0" "sha256-bMPp7QPa2f8GCRmX3y78XvZTUyYNfYxXDKj5lckBBvE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 41dc0b0052f6..f95122d579eb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14353,6 +14353,8 @@ self: super: with self; { types-aiobotocore-ec2-instance-connect + types-aiobotocore-ecr + types-aiobotocore-xray ; From 2245307013c3808e20c78c850527acca88d5451f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:00 -0700 Subject: [PATCH 112/420] python3Packages.types-aiobotocore-ecr-public: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 66cf6b5c0b01..cfa8e11cdeb5 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -254,5 +254,7 @@ rec { types-aiobotocore-ecr = buildTypesAiobotocorePackage "ecr" "2.6.0" "sha256-bMPp7QPa2f8GCRmX3y78XvZTUyYNfYxXDKj5lckBBvE="; + types-aiobotocore-ecr-public = buildTypesAiobotocorePackage "ecr-public" "2.6.0" "sha256-O2RieTv4vyZ6/mR8BRltfbGcPUjAyIIqriskSlmNcb4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f95122d579eb..0954763281dc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14355,6 +14355,8 @@ self: super: with self; { types-aiobotocore-ecr + types-aiobotocore-ecr-public + types-aiobotocore-xray ; From 89038f2378846530d8107f269e06e5dee668e8ae Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:04 -0700 Subject: [PATCH 113/420] python3Packages.types-aiobotocore-ecs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index cfa8e11cdeb5..7ec07440e3a1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -256,5 +256,7 @@ rec { types-aiobotocore-ecr-public = buildTypesAiobotocorePackage "ecr-public" "2.6.0" "sha256-O2RieTv4vyZ6/mR8BRltfbGcPUjAyIIqriskSlmNcb4="; + types-aiobotocore-ecs = buildTypesAiobotocorePackage "ecs" "2.6.0" "sha256-C660Ync/6dV8c9i+N7bgV0TYaPScrJ40KPdG3LItGGs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0954763281dc..09a3b793198d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14357,6 +14357,8 @@ self: super: with self; { types-aiobotocore-ecr-public + types-aiobotocore-ecs + types-aiobotocore-xray ; From 608807743e58b81abf50abf606fa482d6e3c8aba Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:09 -0700 Subject: [PATCH 114/420] python3Packages.types-aiobotocore-efs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7ec07440e3a1..f2d9aa7183a6 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -258,5 +258,7 @@ rec { types-aiobotocore-ecs = buildTypesAiobotocorePackage "ecs" "2.6.0" "sha256-C660Ync/6dV8c9i+N7bgV0TYaPScrJ40KPdG3LItGGs="; + types-aiobotocore-efs = buildTypesAiobotocorePackage "efs" "2.6.0" "sha256-jhIpP0cJEv2SqvmBJtxNVoWF4AOWci2sPj04dN3N+bo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 09a3b793198d..8258217ef9cc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14359,6 +14359,8 @@ self: super: with self; { types-aiobotocore-ecs + types-aiobotocore-efs + types-aiobotocore-xray ; From 61efe3b0c68b47363f2acf06aa209c063e2cbf3c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:13 -0700 Subject: [PATCH 115/420] python3Packages.types-aiobotocore-eks: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f2d9aa7183a6..0efee4cd9964 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -260,5 +260,7 @@ rec { types-aiobotocore-efs = buildTypesAiobotocorePackage "efs" "2.6.0" "sha256-jhIpP0cJEv2SqvmBJtxNVoWF4AOWci2sPj04dN3N+bo="; + types-aiobotocore-eks = buildTypesAiobotocorePackage "eks" "2.6.0" "sha256-MXMbA1QAyRMhTqihwKztK3EoRp1iesCvPEz30Xc/in8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8258217ef9cc..8558545931ea 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14361,6 +14361,8 @@ self: super: with self; { types-aiobotocore-efs + types-aiobotocore-eks + types-aiobotocore-xray ; From 87bc30956fcbed10b947e6e17a4396594b50a575 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:18 -0700 Subject: [PATCH 116/420] python3Packages.types-aiobotocore-elastic-inference: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0efee4cd9964..48dc8b27bff1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -262,5 +262,7 @@ rec { types-aiobotocore-eks = buildTypesAiobotocorePackage "eks" "2.6.0" "sha256-MXMbA1QAyRMhTqihwKztK3EoRp1iesCvPEz30Xc/in8="; + types-aiobotocore-elastic-inference = buildTypesAiobotocorePackage "elastic-inference" "2.6.0" "sha256-xjMVOk0fzyvDoSNb+kxVQT9emfvIG/6Ws3h3MfCCTOY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8558545931ea..d93f0dc62e80 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14363,6 +14363,8 @@ self: super: with self; { types-aiobotocore-eks + types-aiobotocore-elastic-inference + types-aiobotocore-xray ; From 9526c63e6f525def4e9d937e88d3df6a98149837 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:22 -0700 Subject: [PATCH 117/420] python3Packages.types-aiobotocore-elasticache: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 48dc8b27bff1..316a736fd7cb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -264,5 +264,7 @@ rec { types-aiobotocore-elastic-inference = buildTypesAiobotocorePackage "elastic-inference" "2.6.0" "sha256-xjMVOk0fzyvDoSNb+kxVQT9emfvIG/6Ws3h3MfCCTOY="; + types-aiobotocore-elasticache = buildTypesAiobotocorePackage "elasticache" "2.6.0" "sha256-7iUYuPOerdp1+fxI/KdC4sEWDOTJQAgYYheEmSvjBFo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d93f0dc62e80..a4f25590bd21 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14365,6 +14365,8 @@ self: super: with self; { types-aiobotocore-elastic-inference + types-aiobotocore-elasticache + types-aiobotocore-xray ; From a7ccbade5b99b3c246c936c4fa8db388606c5840 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:27 -0700 Subject: [PATCH 118/420] python3Packages.types-aiobotocore-elasticbeanstalk: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 316a736fd7cb..6f31842e1f77 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -266,5 +266,7 @@ rec { types-aiobotocore-elasticache = buildTypesAiobotocorePackage "elasticache" "2.6.0" "sha256-7iUYuPOerdp1+fxI/KdC4sEWDOTJQAgYYheEmSvjBFo="; + types-aiobotocore-elasticbeanstalk = buildTypesAiobotocorePackage "elasticbeanstalk" "2.6.0" "sha256-yCF9EHyTsf1hmoeSGrNiM2Dd8gtGlcX79zqF25btN04="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a4f25590bd21..590fed926903 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14367,6 +14367,8 @@ self: super: with self; { types-aiobotocore-elasticache + types-aiobotocore-elasticbeanstalk + types-aiobotocore-xray ; From 7134d46bad6389503e7d201a723469c884292bf6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:31 -0700 Subject: [PATCH 119/420] python3Packages.types-aiobotocore-elastictranscoder: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6f31842e1f77..adf7dcf1da83 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -268,5 +268,7 @@ rec { types-aiobotocore-elasticbeanstalk = buildTypesAiobotocorePackage "elasticbeanstalk" "2.6.0" "sha256-yCF9EHyTsf1hmoeSGrNiM2Dd8gtGlcX79zqF25btN04="; + types-aiobotocore-elastictranscoder = buildTypesAiobotocorePackage "elastictranscoder" "2.6.0" "sha256-vRVH67/SbkncE4q3gssGce4NtTYgFM56RLzDKyvBCpc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 590fed926903..b362cce22051 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14369,6 +14369,8 @@ self: super: with self; { types-aiobotocore-elasticbeanstalk + types-aiobotocore-elastictranscoder + types-aiobotocore-xray ; From 454bb1ef38ee5ac08a5a2e23e595aa4ce512d825 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:35 -0700 Subject: [PATCH 120/420] python3Packages.types-aiobotocore-elb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index adf7dcf1da83..850310fd672c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -270,5 +270,7 @@ rec { types-aiobotocore-elastictranscoder = buildTypesAiobotocorePackage "elastictranscoder" "2.6.0" "sha256-vRVH67/SbkncE4q3gssGce4NtTYgFM56RLzDKyvBCpc="; + types-aiobotocore-elb = buildTypesAiobotocorePackage "elb" "2.6.0" "sha256-+mFIAOecS21QFsnB+V1EFyGLv6uW+oMzkRi051HvPGA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b362cce22051..2e82514f75ed 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14371,6 +14371,8 @@ self: super: with self; { types-aiobotocore-elastictranscoder + types-aiobotocore-elb + types-aiobotocore-xray ; From 3d65b4c965c365ce8b4f8f9afbde0529127697f5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:40 -0700 Subject: [PATCH 121/420] python3Packages.types-aiobotocore-elbv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 850310fd672c..f774eda2d675 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -272,5 +272,7 @@ rec { types-aiobotocore-elb = buildTypesAiobotocorePackage "elb" "2.6.0" "sha256-+mFIAOecS21QFsnB+V1EFyGLv6uW+oMzkRi051HvPGA="; + types-aiobotocore-elbv2 = buildTypesAiobotocorePackage "elbv2" "2.6.0" "sha256-OIWzkp7AC2bK55bl3WvL2Zk7M0WRPc8jVHekPAGDtyw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2e82514f75ed..4604b836a128 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14373,6 +14373,8 @@ self: super: with self; { types-aiobotocore-elb + types-aiobotocore-elbv2 + types-aiobotocore-xray ; From 6f67aed8884d896c3ceb9cc601c435239cf80394 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:44 -0700 Subject: [PATCH 122/420] python3Packages.types-aiobotocore-emr: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f774eda2d675..ae78b14e3cb9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -274,5 +274,7 @@ rec { types-aiobotocore-elbv2 = buildTypesAiobotocorePackage "elbv2" "2.6.0" "sha256-OIWzkp7AC2bK55bl3WvL2Zk7M0WRPc8jVHekPAGDtyw="; + types-aiobotocore-emr = buildTypesAiobotocorePackage "emr" "2.6.0" "sha256-TWCgT2xBi3UajaF6L+m61Q27YV8RCm+e/jRVnZKjwrI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4604b836a128..c3fd692ab6c2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14375,6 +14375,8 @@ self: super: with self; { types-aiobotocore-elbv2 + types-aiobotocore-emr + types-aiobotocore-xray ; From 3ed3668da1c04584988981312d6d557149b018d1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:49 -0700 Subject: [PATCH 123/420] python3Packages.types-aiobotocore-emr-containers: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ae78b14e3cb9..540ddf8ce521 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -276,5 +276,7 @@ rec { types-aiobotocore-emr = buildTypesAiobotocorePackage "emr" "2.6.0" "sha256-TWCgT2xBi3UajaF6L+m61Q27YV8RCm+e/jRVnZKjwrI="; + types-aiobotocore-emr-containers = buildTypesAiobotocorePackage "emr-containers" "2.6.0" "sha256-pBr9zVqEbP0na385scKW28d0qIB+7HQdYC5QTdhxHNA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c3fd692ab6c2..78fd9d5a438d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14377,6 +14377,8 @@ self: super: with self; { types-aiobotocore-emr + types-aiobotocore-emr-containers + types-aiobotocore-xray ; From 2bebb50647cec7d7295765f84c5e37312c5dadc6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:53 -0700 Subject: [PATCH 124/420] python3Packages.types-aiobotocore-emr-serverless: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 540ddf8ce521..29585e2735b6 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -278,5 +278,7 @@ rec { types-aiobotocore-emr-containers = buildTypesAiobotocorePackage "emr-containers" "2.6.0" "sha256-pBr9zVqEbP0na385scKW28d0qIB+7HQdYC5QTdhxHNA="; + types-aiobotocore-emr-serverless = buildTypesAiobotocorePackage "emr-serverless" "2.6.0" "sha256-mdpuehCY0ki+sZSlNS0kIwijZphoyQixNWY4WKEcrMs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 78fd9d5a438d..86b9dbaf102b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14379,6 +14379,8 @@ self: super: with self; { types-aiobotocore-emr-containers + types-aiobotocore-emr-serverless + types-aiobotocore-xray ; From 3c00333e1c33c3e56ae1e92cd6ad536cdccb62c1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:00:58 -0700 Subject: [PATCH 125/420] python3Packages.types-aiobotocore-entityresolution: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 29585e2735b6..268d4972bbd3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -280,5 +280,7 @@ rec { types-aiobotocore-emr-serverless = buildTypesAiobotocorePackage "emr-serverless" "2.6.0" "sha256-mdpuehCY0ki+sZSlNS0kIwijZphoyQixNWY4WKEcrMs="; + types-aiobotocore-entityresolution = buildTypesAiobotocorePackage "entityresolution" "2.6.0" "sha256-lFbcxmw7Le/rVVL70cOY/vEUShSRnsOdul+eI1jzX7Y="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 86b9dbaf102b..00e60921721a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14381,6 +14381,8 @@ self: super: with self; { types-aiobotocore-emr-serverless + types-aiobotocore-entityresolution + types-aiobotocore-xray ; From 9cf18c8af444dc26c65926efb66853dff140d6ef Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:02 -0700 Subject: [PATCH 126/420] python3Packages.types-aiobotocore-es: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 268d4972bbd3..a5209213df6c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -282,5 +282,7 @@ rec { types-aiobotocore-entityresolution = buildTypesAiobotocorePackage "entityresolution" "2.6.0" "sha256-lFbcxmw7Le/rVVL70cOY/vEUShSRnsOdul+eI1jzX7Y="; + types-aiobotocore-es = buildTypesAiobotocorePackage "es" "2.6.0" "sha256-A/1kM0X4bKrPIXBpir9FuEkuYmUb/K06gfut6faGN0A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 00e60921721a..5a96013074d5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14383,6 +14383,8 @@ self: super: with self; { types-aiobotocore-entityresolution + types-aiobotocore-es + types-aiobotocore-xray ; From b695063fe126d272123c097fcce53eab2d4f6639 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:07 -0700 Subject: [PATCH 127/420] python3Packages.types-aiobotocore-events: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a5209213df6c..1e6fef3c765d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -284,5 +284,7 @@ rec { types-aiobotocore-es = buildTypesAiobotocorePackage "es" "2.6.0" "sha256-A/1kM0X4bKrPIXBpir9FuEkuYmUb/K06gfut6faGN0A="; + types-aiobotocore-events = buildTypesAiobotocorePackage "events" "2.6.0" "sha256-X0r0VZ/ZWYrn2NdE5dJrcS74OyWIvWMDJGSNheIOm0A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a96013074d5..385144a021e5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14385,6 +14385,8 @@ self: super: with self; { types-aiobotocore-es + types-aiobotocore-events + types-aiobotocore-xray ; From 304a343bf0a5b782c931d2887c5b016f0abe30e1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:11 -0700 Subject: [PATCH 128/420] python3Packages.types-aiobotocore-evidently: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1e6fef3c765d..9028c4e25b41 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -286,5 +286,7 @@ rec { types-aiobotocore-events = buildTypesAiobotocorePackage "events" "2.6.0" "sha256-X0r0VZ/ZWYrn2NdE5dJrcS74OyWIvWMDJGSNheIOm0A="; + types-aiobotocore-evidently = buildTypesAiobotocorePackage "evidently" "2.6.0" "sha256-ec9XPmiGjhH+MsW81JtH13KACasiWqtmxOC/O8ewbgE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 385144a021e5..71b9189b67ad 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14387,6 +14387,8 @@ self: super: with self; { types-aiobotocore-events + types-aiobotocore-evidently + types-aiobotocore-xray ; From d738e8165cf6c28766eb5ba6da0996b5cf0b9aee Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:16 -0700 Subject: [PATCH 129/420] python3Packages.types-aiobotocore-finspace: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9028c4e25b41..914d5f0a2b30 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -288,5 +288,7 @@ rec { types-aiobotocore-evidently = buildTypesAiobotocorePackage "evidently" "2.6.0" "sha256-ec9XPmiGjhH+MsW81JtH13KACasiWqtmxOC/O8ewbgE="; + types-aiobotocore-finspace = buildTypesAiobotocorePackage "finspace" "2.6.0" "sha256-fPG/13VJzvdfoADYZXTZ2ssdJrKQ/MEic6rhsNUE4tU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 71b9189b67ad..cbb9ec9da077 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14389,6 +14389,8 @@ self: super: with self; { types-aiobotocore-evidently + types-aiobotocore-finspace + types-aiobotocore-xray ; From 8932060d18d4fcc91a310d350d6839c3238e49bd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:20 -0700 Subject: [PATCH 130/420] python3Packages.types-aiobotocore-finspace-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 914d5f0a2b30..f0c62ddb9ab3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -290,5 +290,7 @@ rec { types-aiobotocore-finspace = buildTypesAiobotocorePackage "finspace" "2.6.0" "sha256-fPG/13VJzvdfoADYZXTZ2ssdJrKQ/MEic6rhsNUE4tU="; + types-aiobotocore-finspace-data = buildTypesAiobotocorePackage "finspace-data" "2.6.0" "sha256-2mAHrKw7Hur/nrVQpuRwGae5CumbjbQb4V9Z6NlsSmo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cbb9ec9da077..fcb4f5816628 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14391,6 +14391,8 @@ self: super: with self; { types-aiobotocore-finspace + types-aiobotocore-finspace-data + types-aiobotocore-xray ; From 99b9e4b5556bac52124cf7d76c87a29c7bd90725 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:25 -0700 Subject: [PATCH 131/420] python3Packages.types-aiobotocore-firehose: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f0c62ddb9ab3..ccfbfec90fc2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -292,5 +292,7 @@ rec { types-aiobotocore-finspace-data = buildTypesAiobotocorePackage "finspace-data" "2.6.0" "sha256-2mAHrKw7Hur/nrVQpuRwGae5CumbjbQb4V9Z6NlsSmo="; + types-aiobotocore-firehose = buildTypesAiobotocorePackage "firehose" "2.6.0" "sha256-viWUrt2F0O1jVhkxK5G776A4r7d4jJJVI/5UsUS+cao="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fcb4f5816628..c87ff59a364a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14393,6 +14393,8 @@ self: super: with self; { types-aiobotocore-finspace-data + types-aiobotocore-firehose + types-aiobotocore-xray ; From a03df36d9989ff081b83e4119c9bc5919215e51a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:30 -0700 Subject: [PATCH 132/420] python3Packages.types-aiobotocore-fis: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ccfbfec90fc2..f0d988d34060 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -294,5 +294,7 @@ rec { types-aiobotocore-firehose = buildTypesAiobotocorePackage "firehose" "2.6.0" "sha256-viWUrt2F0O1jVhkxK5G776A4r7d4jJJVI/5UsUS+cao="; + types-aiobotocore-fis = buildTypesAiobotocorePackage "fis" "2.6.0" "sha256-4T/EcdB+5TV8PnX1Z9c8Ato19kznO3yQPZohuWD1+J8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c87ff59a364a..35ca07a3e17f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14395,6 +14395,8 @@ self: super: with self; { types-aiobotocore-firehose + types-aiobotocore-fis + types-aiobotocore-xray ; From b7b0e5865364c9aaf1fa88bc974dbd16501a9de3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:34 -0700 Subject: [PATCH 133/420] python3Packages.types-aiobotocore-fms: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f0d988d34060..031a3a1d9eac 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -296,5 +296,7 @@ rec { types-aiobotocore-fis = buildTypesAiobotocorePackage "fis" "2.6.0" "sha256-4T/EcdB+5TV8PnX1Z9c8Ato19kznO3yQPZohuWD1+J8="; + types-aiobotocore-fms = buildTypesAiobotocorePackage "fms" "2.6.0" "sha256-VIGEXyDyUEWshdYFUJ3VmCS1z/ZBOKq2PYCosalPZAw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 35ca07a3e17f..e67b12bb74af 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14397,6 +14397,8 @@ self: super: with self; { types-aiobotocore-fis + types-aiobotocore-fms + types-aiobotocore-xray ; From 5d713814ae937043a50372db0cfbc1041aa91a21 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:39 -0700 Subject: [PATCH 134/420] python3Packages.types-aiobotocore-forecast: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 031a3a1d9eac..ae8e719ba522 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -298,5 +298,7 @@ rec { types-aiobotocore-fms = buildTypesAiobotocorePackage "fms" "2.6.0" "sha256-VIGEXyDyUEWshdYFUJ3VmCS1z/ZBOKq2PYCosalPZAw="; + types-aiobotocore-forecast = buildTypesAiobotocorePackage "forecast" "2.6.0" "sha256-rMjrKtR8BWtAYoyBY52o/5wbZCHqX1aFMRsVCunZTeo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e67b12bb74af..aef0163bcb67 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14399,6 +14399,8 @@ self: super: with self; { types-aiobotocore-fms + types-aiobotocore-forecast + types-aiobotocore-xray ; From 142ba450e90ba899f5597b9034dfed7e752bd3cf Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:44 -0700 Subject: [PATCH 135/420] python3Packages.types-aiobotocore-forecastquery: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ae8e719ba522..ca442b09906a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -300,5 +300,7 @@ rec { types-aiobotocore-forecast = buildTypesAiobotocorePackage "forecast" "2.6.0" "sha256-rMjrKtR8BWtAYoyBY52o/5wbZCHqX1aFMRsVCunZTeo="; + types-aiobotocore-forecastquery = buildTypesAiobotocorePackage "forecastquery" "2.6.0" "sha256-rh53/1tmYyADrkUtQjrwrcEe78ji6II0yYnMQO38AOU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index aef0163bcb67..c3211dcef336 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14401,6 +14401,8 @@ self: super: with self; { types-aiobotocore-forecast + types-aiobotocore-forecastquery + types-aiobotocore-xray ; From 2a1f78b3b7c116efd678c0840625fc97cb318d24 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:48 -0700 Subject: [PATCH 136/420] python3Packages.types-aiobotocore-frauddetector: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ca442b09906a..1e96da638980 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -302,5 +302,7 @@ rec { types-aiobotocore-forecastquery = buildTypesAiobotocorePackage "forecastquery" "2.6.0" "sha256-rh53/1tmYyADrkUtQjrwrcEe78ji6II0yYnMQO38AOU="; + types-aiobotocore-frauddetector = buildTypesAiobotocorePackage "frauddetector" "2.6.0" "sha256-ICRkb+GIWginbc2LvsJTzBaEXDlwg+JOqWQwNRzu+CI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c3211dcef336..f06988a316f7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14403,6 +14403,8 @@ self: super: with self; { types-aiobotocore-forecastquery + types-aiobotocore-frauddetector + types-aiobotocore-xray ; From 2fd1480221217ce28d1297d16f14414f0d56e948 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:53 -0700 Subject: [PATCH 137/420] python3Packages.types-aiobotocore-fsx: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1e96da638980..9c7f803e5c85 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -304,5 +304,7 @@ rec { types-aiobotocore-frauddetector = buildTypesAiobotocorePackage "frauddetector" "2.6.0" "sha256-ICRkb+GIWginbc2LvsJTzBaEXDlwg+JOqWQwNRzu+CI="; + types-aiobotocore-fsx = buildTypesAiobotocorePackage "fsx" "2.6.0" "sha256-vZiK+Kat3RKN/OcKny5qLF+pYljoVlJGG9Kdlb75GWk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f06988a316f7..159288cde551 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14405,6 +14405,8 @@ self: super: with self; { types-aiobotocore-frauddetector + types-aiobotocore-fsx + types-aiobotocore-xray ; From ec7b69e1594f1bf15752a071335f875e7e4aff06 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:01:57 -0700 Subject: [PATCH 138/420] python3Packages.types-aiobotocore-gamelift: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9c7f803e5c85..380b5aed248e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -306,5 +306,7 @@ rec { types-aiobotocore-fsx = buildTypesAiobotocorePackage "fsx" "2.6.0" "sha256-vZiK+Kat3RKN/OcKny5qLF+pYljoVlJGG9Kdlb75GWk="; + types-aiobotocore-gamelift = buildTypesAiobotocorePackage "gamelift" "2.6.0" "sha256-9qk0jvEAU6vh++k18ccjrZNLnYlOqiAGuVvBGS5QetQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 159288cde551..a3f01adceaca 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14407,6 +14407,8 @@ self: super: with self; { types-aiobotocore-fsx + types-aiobotocore-gamelift + types-aiobotocore-xray ; From 411eccec123dc597ad3677933f06f4fa4f245a21 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:02 -0700 Subject: [PATCH 139/420] python3Packages.types-aiobotocore-gamesparks: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 380b5aed248e..aaef8c2ab2ff 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -308,5 +308,7 @@ rec { types-aiobotocore-gamelift = buildTypesAiobotocorePackage "gamelift" "2.6.0" "sha256-9qk0jvEAU6vh++k18ccjrZNLnYlOqiAGuVvBGS5QetQ="; + types-aiobotocore-gamesparks = buildTypesAiobotocorePackage "gamesparks" "2.6.0" "sha256-9iV7bpGMnzz9TH+g1YpPjbKBSKY3rcL/OJvMOzwLC1M="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a3f01adceaca..9a7db44a3b53 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14409,6 +14409,8 @@ self: super: with self; { types-aiobotocore-gamelift + types-aiobotocore-gamesparks + types-aiobotocore-xray ; From 765924938ba37099f64291030640f5847e5972e2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:07 -0700 Subject: [PATCH 140/420] python3Packages.types-aiobotocore-glacier: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index aaef8c2ab2ff..1b086a527f6d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -310,5 +310,7 @@ rec { types-aiobotocore-gamesparks = buildTypesAiobotocorePackage "gamesparks" "2.6.0" "sha256-9iV7bpGMnzz9TH+g1YpPjbKBSKY3rcL/OJvMOzwLC1M="; + types-aiobotocore-glacier = buildTypesAiobotocorePackage "glacier" "2.6.0" "sha256-shUgv/KntAP0kuD8pJFLEAp/aIukEsLhte6C5odtNJs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9a7db44a3b53..c882877c2bf2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14411,6 +14411,8 @@ self: super: with self; { types-aiobotocore-gamesparks + types-aiobotocore-glacier + types-aiobotocore-xray ; From 3e3f9fcb89db777925a5ee2235c04ae27d2317c1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:12 -0700 Subject: [PATCH 141/420] python3Packages.types-aiobotocore-globalaccelerator: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1b086a527f6d..76b1aa145e82 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -312,5 +312,7 @@ rec { types-aiobotocore-glacier = buildTypesAiobotocorePackage "glacier" "2.6.0" "sha256-shUgv/KntAP0kuD8pJFLEAp/aIukEsLhte6C5odtNJs="; + types-aiobotocore-globalaccelerator = buildTypesAiobotocorePackage "globalaccelerator" "2.6.0" "sha256-U/74XOX/pXh4JJ4n6Fu6quL6gQwz+zt9bOWj/QYOS+8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c882877c2bf2..f09ea527dd72 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14413,6 +14413,8 @@ self: super: with self; { types-aiobotocore-glacier + types-aiobotocore-globalaccelerator + types-aiobotocore-xray ; From 6523607b8192f9aee3151b30ca01672b3ad548e9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:16 -0700 Subject: [PATCH 142/420] python3Packages.types-aiobotocore-glue: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 76b1aa145e82..cb8741b30c28 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -314,5 +314,7 @@ rec { types-aiobotocore-globalaccelerator = buildTypesAiobotocorePackage "globalaccelerator" "2.6.0" "sha256-U/74XOX/pXh4JJ4n6Fu6quL6gQwz+zt9bOWj/QYOS+8="; + types-aiobotocore-glue = buildTypesAiobotocorePackage "glue" "2.6.0" "sha256-K2asnioD1r9BJCX2PaNaN+fKDyA+oQhvdM0h0LgxbEY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f09ea527dd72..ceb20f421b7b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14415,6 +14415,8 @@ self: super: with self; { types-aiobotocore-globalaccelerator + types-aiobotocore-glue + types-aiobotocore-xray ; From 5e255fde5bd53f661d14561dac7be28179fea7d4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:21 -0700 Subject: [PATCH 143/420] python3Packages.types-aiobotocore-grafana: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index cb8741b30c28..638a61e05132 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -316,5 +316,7 @@ rec { types-aiobotocore-glue = buildTypesAiobotocorePackage "glue" "2.6.0" "sha256-K2asnioD1r9BJCX2PaNaN+fKDyA+oQhvdM0h0LgxbEY="; + types-aiobotocore-grafana = buildTypesAiobotocorePackage "grafana" "2.6.0" "sha256-acNr8U/E2Eq4wp68Td0k8xdORhT6ZOJBOi0enBnaacE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ceb20f421b7b..207a0c9b49e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14417,6 +14417,8 @@ self: super: with self; { types-aiobotocore-glue + types-aiobotocore-grafana + types-aiobotocore-xray ; From 7f67af3f5c4194ea3ce0ea008319ee929efaf771 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:26 -0700 Subject: [PATCH 144/420] python3Packages.types-aiobotocore-greengrass: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 638a61e05132..d0f0de43bc4a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -318,5 +318,7 @@ rec { types-aiobotocore-grafana = buildTypesAiobotocorePackage "grafana" "2.6.0" "sha256-acNr8U/E2Eq4wp68Td0k8xdORhT6ZOJBOi0enBnaacE="; + types-aiobotocore-greengrass = buildTypesAiobotocorePackage "greengrass" "2.6.0" "sha256-9mqnIWlLUoz28qp8AH8LiNdDgcJ04P0Z+jxNb/91jUg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 207a0c9b49e6..1102f077f924 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14419,6 +14419,8 @@ self: super: with self; { types-aiobotocore-grafana + types-aiobotocore-greengrass + types-aiobotocore-xray ; From 62aa0f17596a569694fcdd232472336c26ac36cf Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:30 -0700 Subject: [PATCH 145/420] python3Packages.types-aiobotocore-greengrassv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d0f0de43bc4a..08943c560b50 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -320,5 +320,7 @@ rec { types-aiobotocore-greengrass = buildTypesAiobotocorePackage "greengrass" "2.6.0" "sha256-9mqnIWlLUoz28qp8AH8LiNdDgcJ04P0Z+jxNb/91jUg="; + types-aiobotocore-greengrassv2 = buildTypesAiobotocorePackage "greengrassv2" "2.6.0" "sha256-+G6nPOY2Suxa8LPTG8SHOZfwaIJQIyVGTRcsAQYXZzY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1102f077f924..8bf19e0dd1f1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14421,6 +14421,8 @@ self: super: with self; { types-aiobotocore-greengrass + types-aiobotocore-greengrassv2 + types-aiobotocore-xray ; From d458fe12e0ce19af04449ec485e53afdd2963668 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:35 -0700 Subject: [PATCH 146/420] python3Packages.types-aiobotocore-groundstation: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 08943c560b50..bfb1d01bc9bb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -322,5 +322,7 @@ rec { types-aiobotocore-greengrassv2 = buildTypesAiobotocorePackage "greengrassv2" "2.6.0" "sha256-+G6nPOY2Suxa8LPTG8SHOZfwaIJQIyVGTRcsAQYXZzY="; + types-aiobotocore-groundstation = buildTypesAiobotocorePackage "groundstation" "2.6.0" "sha256-VGGDcARvtSeukjgVB9jwSamIrlrNCF+0pNszN6VkMC0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8bf19e0dd1f1..03b0b74341a6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14423,6 +14423,8 @@ self: super: with self; { types-aiobotocore-greengrassv2 + types-aiobotocore-groundstation + types-aiobotocore-xray ; From 6ee6a227dcc1669b3ac2a0f9f2eb0810dba81e32 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:40 -0700 Subject: [PATCH 147/420] python3Packages.types-aiobotocore-guardduty: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bfb1d01bc9bb..81fb54f7c26b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -324,5 +324,7 @@ rec { types-aiobotocore-groundstation = buildTypesAiobotocorePackage "groundstation" "2.6.0" "sha256-VGGDcARvtSeukjgVB9jwSamIrlrNCF+0pNszN6VkMC0="; + types-aiobotocore-guardduty = buildTypesAiobotocorePackage "guardduty" "2.6.0" "sha256-3bScTMTc7PMrHvZpfPYENj55w2JjnK/pVuNLcxCjw5Q="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 03b0b74341a6..b5200fe7a8d8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14425,6 +14425,8 @@ self: super: with self; { types-aiobotocore-groundstation + types-aiobotocore-guardduty + types-aiobotocore-xray ; From 303fd6fe5ab374f0ceb312e76cd8c2f22fac6bbb Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:44 -0700 Subject: [PATCH 148/420] python3Packages.types-aiobotocore-health: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 81fb54f7c26b..ff776f1302b4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -326,5 +326,7 @@ rec { types-aiobotocore-guardduty = buildTypesAiobotocorePackage "guardduty" "2.6.0" "sha256-3bScTMTc7PMrHvZpfPYENj55w2JjnK/pVuNLcxCjw5Q="; + types-aiobotocore-health = buildTypesAiobotocorePackage "health" "2.6.0" "sha256-WBxZlnWrZ6b0MIEomvgUDqiKNe9KIIgOrNrRhRw07EA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b5200fe7a8d8..7a8970ff4806 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14427,6 +14427,8 @@ self: super: with self; { types-aiobotocore-guardduty + types-aiobotocore-health + types-aiobotocore-xray ; From dc49d196a2f8716da3580d65e1dc8a332baff6bf Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:49 -0700 Subject: [PATCH 149/420] python3Packages.types-aiobotocore-healthlake: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ff776f1302b4..889f7748fbcc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -328,5 +328,7 @@ rec { types-aiobotocore-health = buildTypesAiobotocorePackage "health" "2.6.0" "sha256-WBxZlnWrZ6b0MIEomvgUDqiKNe9KIIgOrNrRhRw07EA="; + types-aiobotocore-healthlake = buildTypesAiobotocorePackage "healthlake" "2.6.0" "sha256-8ofimJ4eTxq8yQjCc23FQ2OktMCNwlIBCn+eC+HLqlc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7a8970ff4806..ae6711233ec6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14429,6 +14429,8 @@ self: super: with self; { types-aiobotocore-health + types-aiobotocore-healthlake + types-aiobotocore-xray ; From dd3701470e1cc58dbf725d79ac79760a0d6d51fe Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:54 -0700 Subject: [PATCH 150/420] python3Packages.types-aiobotocore-honeycode: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 889f7748fbcc..746bd63598ec 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -330,5 +330,7 @@ rec { types-aiobotocore-healthlake = buildTypesAiobotocorePackage "healthlake" "2.6.0" "sha256-8ofimJ4eTxq8yQjCc23FQ2OktMCNwlIBCn+eC+HLqlc="; + types-aiobotocore-honeycode = buildTypesAiobotocorePackage "honeycode" "2.6.0" "sha256-dCjt22yHlShPdG6Jipy3m4Rx3G4OLPiuUi1gyubcQ/g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ae6711233ec6..5081aa9b0f4f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14431,6 +14431,8 @@ self: super: with self; { types-aiobotocore-healthlake + types-aiobotocore-honeycode + types-aiobotocore-xray ; From 85ebdfaa8fd457b0b5c7fa7f0f7b1f0c85f04f2e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:02:58 -0700 Subject: [PATCH 151/420] python3Packages.types-aiobotocore-iam: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 746bd63598ec..26d37570b9fb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -332,5 +332,7 @@ rec { types-aiobotocore-honeycode = buildTypesAiobotocorePackage "honeycode" "2.6.0" "sha256-dCjt22yHlShPdG6Jipy3m4Rx3G4OLPiuUi1gyubcQ/g="; + types-aiobotocore-iam = buildTypesAiobotocorePackage "iam" "2.6.0" "sha256-NPvYTwvZY5MjfdIlTMRZEQ1S9IvxvQjoi5K2LOlSrMM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5081aa9b0f4f..de0149d446fe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14433,6 +14433,8 @@ self: super: with self; { types-aiobotocore-honeycode + types-aiobotocore-iam + types-aiobotocore-xray ; From 472dd44b3cff28e5c5f1db5c4cde128722372ee9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:03 -0700 Subject: [PATCH 152/420] python3Packages.types-aiobotocore-identitystore: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 26d37570b9fb..5bff5c7c5f71 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -334,5 +334,7 @@ rec { types-aiobotocore-iam = buildTypesAiobotocorePackage "iam" "2.6.0" "sha256-NPvYTwvZY5MjfdIlTMRZEQ1S9IvxvQjoi5K2LOlSrMM="; + types-aiobotocore-identitystore = buildTypesAiobotocorePackage "identitystore" "2.6.0" "sha256-u4d+/kVZ+qtLyueNSGy6a2VoB0jIYdKZqvCQQfarbx4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index de0149d446fe..b261da0b3791 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14435,6 +14435,8 @@ self: super: with self; { types-aiobotocore-iam + types-aiobotocore-identitystore + types-aiobotocore-xray ; From 420ed1c1a50c1d61479a8fcb4dd006c95ad4a4a5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:07 -0700 Subject: [PATCH 153/420] python3Packages.types-aiobotocore-imagebuilder: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5bff5c7c5f71..3269342f7002 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -336,5 +336,7 @@ rec { types-aiobotocore-identitystore = buildTypesAiobotocorePackage "identitystore" "2.6.0" "sha256-u4d+/kVZ+qtLyueNSGy6a2VoB0jIYdKZqvCQQfarbx4="; + types-aiobotocore-imagebuilder = buildTypesAiobotocorePackage "imagebuilder" "2.6.0" "sha256-uhkFIVr68n0ShrpZY9qyghd0XgMb0ZT6fF9WdjtF7g0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b261da0b3791..1f77800397e1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14437,6 +14437,8 @@ self: super: with self; { types-aiobotocore-identitystore + types-aiobotocore-imagebuilder + types-aiobotocore-xray ; From 5e4172bbe6a48991126a4b88b6c9931106b777a4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:13 -0700 Subject: [PATCH 154/420] python3Packages.types-aiobotocore-importexport: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3269342f7002..03036949df22 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -338,5 +338,7 @@ rec { types-aiobotocore-imagebuilder = buildTypesAiobotocorePackage "imagebuilder" "2.6.0" "sha256-uhkFIVr68n0ShrpZY9qyghd0XgMb0ZT6fF9WdjtF7g0="; + types-aiobotocore-importexport = buildTypesAiobotocorePackage "importexport" "2.6.0" "sha256-m0fUuupB8Eb9pJQnuir4THb4TdDstKcxHQRgz8Ce2Zg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1f77800397e1..878ca5e5cd31 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14439,6 +14439,8 @@ self: super: with self; { types-aiobotocore-imagebuilder + types-aiobotocore-importexport + types-aiobotocore-xray ; From 6a67e01850b5580213305ac229c65f0c1fbc6573 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:18 -0700 Subject: [PATCH 155/420] python3Packages.types-aiobotocore-inspector: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 03036949df22..fbd97d1f8e0f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -340,5 +340,7 @@ rec { types-aiobotocore-importexport = buildTypesAiobotocorePackage "importexport" "2.6.0" "sha256-m0fUuupB8Eb9pJQnuir4THb4TdDstKcxHQRgz8Ce2Zg="; + types-aiobotocore-inspector = buildTypesAiobotocorePackage "inspector" "2.6.0" "sha256-dJQnb6AwtmScEIun0QB9CiiPkbdKti9+mc5LN3vf7e0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 878ca5e5cd31..347024f593d2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14441,6 +14441,8 @@ self: super: with self; { types-aiobotocore-importexport + types-aiobotocore-inspector + types-aiobotocore-xray ; From bf8ebe467c5656dec3e022655fc2016827b83190 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:22 -0700 Subject: [PATCH 156/420] python3Packages.types-aiobotocore-inspector2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fbd97d1f8e0f..ec65f55d7ab0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -342,5 +342,7 @@ rec { types-aiobotocore-inspector = buildTypesAiobotocorePackage "inspector" "2.6.0" "sha256-dJQnb6AwtmScEIun0QB9CiiPkbdKti9+mc5LN3vf7e0="; + types-aiobotocore-inspector2 = buildTypesAiobotocorePackage "inspector2" "2.6.0" "sha256-kAhdyymMdbrPoCFzKiVCFzBlfpmz4aGlZ1Ilkrc8EiQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 347024f593d2..15bc6311487b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14443,6 +14443,8 @@ self: super: with self; { types-aiobotocore-inspector + types-aiobotocore-inspector2 + types-aiobotocore-xray ; From 8654d5fba456b97778fb058ba91142e5156a5137 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:27 -0700 Subject: [PATCH 157/420] python3Packages.types-aiobotocore-internetmonitor: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ec65f55d7ab0..032f9e81ba66 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -344,5 +344,7 @@ rec { types-aiobotocore-inspector2 = buildTypesAiobotocorePackage "inspector2" "2.6.0" "sha256-kAhdyymMdbrPoCFzKiVCFzBlfpmz4aGlZ1Ilkrc8EiQ="; + types-aiobotocore-internetmonitor = buildTypesAiobotocorePackage "internetmonitor" "2.6.0" "sha256-3oJbkuU013LR7DUXvr8y0nbYh3caAF1c4GtgM1CizdU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 15bc6311487b..ccae161b107f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14445,6 +14445,8 @@ self: super: with self; { types-aiobotocore-inspector2 + types-aiobotocore-internetmonitor + types-aiobotocore-xray ; From cf66ac2856a50f7d8938b1bd1c28b0eebd416ceb Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:31 -0700 Subject: [PATCH 158/420] python3Packages.types-aiobotocore-iot: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 032f9e81ba66..d431d69dc491 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -346,5 +346,7 @@ rec { types-aiobotocore-internetmonitor = buildTypesAiobotocorePackage "internetmonitor" "2.6.0" "sha256-3oJbkuU013LR7DUXvr8y0nbYh3caAF1c4GtgM1CizdU="; + types-aiobotocore-iot = buildTypesAiobotocorePackage "iot" "2.6.0" "sha256-Rt6dsE/9aR5AZC47G3RayV56VVobDWEah64cNHsaYII="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ccae161b107f..bbef15d0cb74 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14447,6 +14447,8 @@ self: super: with self; { types-aiobotocore-internetmonitor + types-aiobotocore-iot + types-aiobotocore-xray ; From ace5c7cfc9e0a719fb83bfdcab37a8268c1423a7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:36 -0700 Subject: [PATCH 159/420] python3Packages.types-aiobotocore-iot-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d431d69dc491..c5df3245f202 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -348,5 +348,7 @@ rec { types-aiobotocore-iot = buildTypesAiobotocorePackage "iot" "2.6.0" "sha256-Rt6dsE/9aR5AZC47G3RayV56VVobDWEah64cNHsaYII="; + types-aiobotocore-iot-data = buildTypesAiobotocorePackage "iot-data" "2.6.0" "sha256-KpgEjoEsCSiC6aKyHy64it0k87XYICbxMhUFYUjCBuo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bbef15d0cb74..10cbbca3976f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14449,6 +14449,8 @@ self: super: with self; { types-aiobotocore-iot + types-aiobotocore-iot-data + types-aiobotocore-xray ; From 1477d5b2a5cdb47b652e290736a4d45cbc58724e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:41 -0700 Subject: [PATCH 160/420] python3Packages.types-aiobotocore-iot-jobs-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c5df3245f202..514a95f1a9d9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -350,5 +350,7 @@ rec { types-aiobotocore-iot-data = buildTypesAiobotocorePackage "iot-data" "2.6.0" "sha256-KpgEjoEsCSiC6aKyHy64it0k87XYICbxMhUFYUjCBuo="; + types-aiobotocore-iot-jobs-data = buildTypesAiobotocorePackage "iot-jobs-data" "2.6.0" "sha256-IQRarMn1ZAh+kUG1I4Cyt/6WrIoby07g3qcSzpWUWWM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 10cbbca3976f..a60a741a5155 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14451,6 +14451,8 @@ self: super: with self; { types-aiobotocore-iot-data + types-aiobotocore-iot-jobs-data + types-aiobotocore-xray ; From 6798b06b3f300ec9477611ea358e276de691afcc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:46 -0700 Subject: [PATCH 161/420] python3Packages.types-aiobotocore-iot-roborunner: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 514a95f1a9d9..18313755bb9b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -352,5 +352,7 @@ rec { types-aiobotocore-iot-jobs-data = buildTypesAiobotocorePackage "iot-jobs-data" "2.6.0" "sha256-IQRarMn1ZAh+kUG1I4Cyt/6WrIoby07g3qcSzpWUWWM="; + types-aiobotocore-iot-roborunner = buildTypesAiobotocorePackage "iot-roborunner" "2.6.0" "sha256-BFSV0lfXriD43UFXjdomHIQO60TjrYWmL6+htf9Z3mE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a60a741a5155..ba7c3764e77c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14453,6 +14453,8 @@ self: super: with self; { types-aiobotocore-iot-jobs-data + types-aiobotocore-iot-roborunner + types-aiobotocore-xray ; From f6464cbb6c17cac1dbaf77b30d3aa871f043fa52 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:50 -0700 Subject: [PATCH 162/420] python3Packages.types-aiobotocore-iot1click-devices: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 18313755bb9b..8bbaabcfc677 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -354,5 +354,7 @@ rec { types-aiobotocore-iot-roborunner = buildTypesAiobotocorePackage "iot-roborunner" "2.6.0" "sha256-BFSV0lfXriD43UFXjdomHIQO60TjrYWmL6+htf9Z3mE="; + types-aiobotocore-iot1click-devices = buildTypesAiobotocorePackage "iot1click-devices" "2.6.0" "sha256-MRRil8KuR88NvjAOQHQSftplzk7+sdAJBb1Koxj1j8o="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ba7c3764e77c..d811fae6c643 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14455,6 +14455,8 @@ self: super: with self; { types-aiobotocore-iot-roborunner + types-aiobotocore-iot1click-devices + types-aiobotocore-xray ; From c0e3b36610fc5ae09caae2e8485a32ba54881829 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:03:55 -0700 Subject: [PATCH 163/420] python3Packages.types-aiobotocore-iot1click-projects: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8bbaabcfc677..09c61ebbef82 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -356,5 +356,7 @@ rec { types-aiobotocore-iot1click-devices = buildTypesAiobotocorePackage "iot1click-devices" "2.6.0" "sha256-MRRil8KuR88NvjAOQHQSftplzk7+sdAJBb1Koxj1j8o="; + types-aiobotocore-iot1click-projects = buildTypesAiobotocorePackage "iot1click-projects" "2.6.0" "sha256-6YRdsbNw685KvSLCPP6cpCVA5zqht9gF/SthHHtjxfI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d811fae6c643..5dc15f2e1d43 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14457,6 +14457,8 @@ self: super: with self; { types-aiobotocore-iot1click-devices + types-aiobotocore-iot1click-projects + types-aiobotocore-xray ; From ad153b5d6dfadb440b7aae078e9e88da1917b2c5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:00 -0700 Subject: [PATCH 164/420] python3Packages.types-aiobotocore-iotanalytics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 09c61ebbef82..66f1f4728fa3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -358,5 +358,7 @@ rec { types-aiobotocore-iot1click-projects = buildTypesAiobotocorePackage "iot1click-projects" "2.6.0" "sha256-6YRdsbNw685KvSLCPP6cpCVA5zqht9gF/SthHHtjxfI="; + types-aiobotocore-iotanalytics = buildTypesAiobotocorePackage "iotanalytics" "2.6.0" "sha256-uhxX742flhdDM7zoYm6yggc41NW7glGPijiql4XKJa4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5dc15f2e1d43..1c68a33c99bc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14459,6 +14459,8 @@ self: super: with self; { types-aiobotocore-iot1click-projects + types-aiobotocore-iotanalytics + types-aiobotocore-xray ; From 0d504f8eb8e1a389be85716dbefc3e7cbb35637a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:04 -0700 Subject: [PATCH 165/420] python3Packages.types-aiobotocore-iotdeviceadvisor: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 66f1f4728fa3..54e838d88cc3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -360,5 +360,7 @@ rec { types-aiobotocore-iotanalytics = buildTypesAiobotocorePackage "iotanalytics" "2.6.0" "sha256-uhxX742flhdDM7zoYm6yggc41NW7glGPijiql4XKJa4="; + types-aiobotocore-iotdeviceadvisor = buildTypesAiobotocorePackage "iotdeviceadvisor" "2.6.0" "sha256-jrOVxsJHgpEvyLhreMrzttu3yQ4FXm4+MVDlNNIKWVU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1c68a33c99bc..ab5d458625fb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14461,6 +14461,8 @@ self: super: with self; { types-aiobotocore-iotanalytics + types-aiobotocore-iotdeviceadvisor + types-aiobotocore-xray ; From 3d9736919a009d971ccaadf498b50a9469181da4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:09 -0700 Subject: [PATCH 166/420] python3Packages.types-aiobotocore-iotevents: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 54e838d88cc3..edd2f648d9eb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -362,5 +362,7 @@ rec { types-aiobotocore-iotdeviceadvisor = buildTypesAiobotocorePackage "iotdeviceadvisor" "2.6.0" "sha256-jrOVxsJHgpEvyLhreMrzttu3yQ4FXm4+MVDlNNIKWVU="; + types-aiobotocore-iotevents = buildTypesAiobotocorePackage "iotevents" "2.6.0" "sha256-M3wUbFFGsYQesy7ASen+b6yokGkjXY0P5wpGexO2CGg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ab5d458625fb..6d0026c113bd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14463,6 +14463,8 @@ self: super: with self; { types-aiobotocore-iotdeviceadvisor + types-aiobotocore-iotevents + types-aiobotocore-xray ; From 16c08a464211bb0071b40a2d9d72929d9cebe04d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:13 -0700 Subject: [PATCH 167/420] python3Packages.types-aiobotocore-iotevents-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index edd2f648d9eb..6aebe417469e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -364,5 +364,7 @@ rec { types-aiobotocore-iotevents = buildTypesAiobotocorePackage "iotevents" "2.6.0" "sha256-M3wUbFFGsYQesy7ASen+b6yokGkjXY0P5wpGexO2CGg="; + types-aiobotocore-iotevents-data = buildTypesAiobotocorePackage "iotevents-data" "2.6.0" "sha256-ESm7ZCtEvHo/r9LXnBaIAVAb4bQkGjIlmUNlo/JuzjE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6d0026c113bd..b83c68b2e813 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14465,6 +14465,8 @@ self: super: with self; { types-aiobotocore-iotevents + types-aiobotocore-iotevents-data + types-aiobotocore-xray ; From 0aa59c760dfee53127f065f221ffafbb44787a11 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:18 -0700 Subject: [PATCH 168/420] python3Packages.types-aiobotocore-iotfleethub: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6aebe417469e..3c58aef9cdee 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -366,5 +366,7 @@ rec { types-aiobotocore-iotevents-data = buildTypesAiobotocorePackage "iotevents-data" "2.6.0" "sha256-ESm7ZCtEvHo/r9LXnBaIAVAb4bQkGjIlmUNlo/JuzjE="; + types-aiobotocore-iotfleethub = buildTypesAiobotocorePackage "iotfleethub" "2.6.0" "sha256-0NMp62HDGZ0FHVtyHOvgfMUaedqZG9bY46d2OrpGK7E="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b83c68b2e813..ef2112e9f677 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14467,6 +14467,8 @@ self: super: with self; { types-aiobotocore-iotevents-data + types-aiobotocore-iotfleethub + types-aiobotocore-xray ; From 931231107d8faf7822a8d93e49965967c319fa73 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:22 -0700 Subject: [PATCH 169/420] python3Packages.types-aiobotocore-iotfleetwise: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3c58aef9cdee..62679526f262 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -368,5 +368,7 @@ rec { types-aiobotocore-iotfleethub = buildTypesAiobotocorePackage "iotfleethub" "2.6.0" "sha256-0NMp62HDGZ0FHVtyHOvgfMUaedqZG9bY46d2OrpGK7E="; + types-aiobotocore-iotfleetwise = buildTypesAiobotocorePackage "iotfleetwise" "2.6.0" "sha256-jbLoJOgFRNSPaFv/diM8L0mTGIB2IjAzHqx/QH7lriQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ef2112e9f677..6242fac25e9a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14469,6 +14469,8 @@ self: super: with self; { types-aiobotocore-iotfleethub + types-aiobotocore-iotfleetwise + types-aiobotocore-xray ; From 4eae07a65cd1f56446d204c6f61e0978d07c698d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:27 -0700 Subject: [PATCH 170/420] python3Packages.types-aiobotocore-iotsecuretunneling: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 62679526f262..91e08788a56b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -370,5 +370,7 @@ rec { types-aiobotocore-iotfleetwise = buildTypesAiobotocorePackage "iotfleetwise" "2.6.0" "sha256-jbLoJOgFRNSPaFv/diM8L0mTGIB2IjAzHqx/QH7lriQ="; + types-aiobotocore-iotsecuretunneling = buildTypesAiobotocorePackage "iotsecuretunneling" "2.6.0" "sha256-8zvG95bDvJWNRmw9sCdBfPxQPdb4TNAzqMcth+hliLI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6242fac25e9a..8e94220f176d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14471,6 +14471,8 @@ self: super: with self; { types-aiobotocore-iotfleetwise + types-aiobotocore-iotsecuretunneling + types-aiobotocore-xray ; From 57ee2a076add716ef8af53e0a6c15e92399891ec Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:31 -0700 Subject: [PATCH 171/420] python3Packages.types-aiobotocore-iotsitewise: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 91e08788a56b..bba98480e759 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -372,5 +372,7 @@ rec { types-aiobotocore-iotsecuretunneling = buildTypesAiobotocorePackage "iotsecuretunneling" "2.6.0" "sha256-8zvG95bDvJWNRmw9sCdBfPxQPdb4TNAzqMcth+hliLI="; + types-aiobotocore-iotsitewise = buildTypesAiobotocorePackage "iotsitewise" "2.6.0" "sha256-1i4Z4CE9PG7JByR9RpPazu7RmPIjNeDecnz5LH2ls2A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e94220f176d..ec2d3ebef9b9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14473,6 +14473,8 @@ self: super: with self; { types-aiobotocore-iotsecuretunneling + types-aiobotocore-iotsitewise + types-aiobotocore-xray ; From 43ea123bba53d4ec6016f68957a9f1eac87f7e51 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:36 -0700 Subject: [PATCH 172/420] python3Packages.types-aiobotocore-iotthingsgraph: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bba98480e759..adda1a286b1d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -374,5 +374,7 @@ rec { types-aiobotocore-iotsitewise = buildTypesAiobotocorePackage "iotsitewise" "2.6.0" "sha256-1i4Z4CE9PG7JByR9RpPazu7RmPIjNeDecnz5LH2ls2A="; + types-aiobotocore-iotthingsgraph = buildTypesAiobotocorePackage "iotthingsgraph" "2.6.0" "sha256-6161RDBwnvqvBtJWs5bPieI6AdwKFCmiT6ixKRE9GuM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ec2d3ebef9b9..a79cec2ea4d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14475,6 +14475,8 @@ self: super: with self; { types-aiobotocore-iotsitewise + types-aiobotocore-iotthingsgraph + types-aiobotocore-xray ; From 062b0200a004aba2a7039d52f39982bb5d348d8d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:40 -0700 Subject: [PATCH 173/420] python3Packages.types-aiobotocore-iottwinmaker: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index adda1a286b1d..6413efc4723d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -376,5 +376,7 @@ rec { types-aiobotocore-iotthingsgraph = buildTypesAiobotocorePackage "iotthingsgraph" "2.6.0" "sha256-6161RDBwnvqvBtJWs5bPieI6AdwKFCmiT6ixKRE9GuM="; + types-aiobotocore-iottwinmaker = buildTypesAiobotocorePackage "iottwinmaker" "2.6.0" "sha256-/h85AoG+poq4t0EvpXdofWfbaEBD6CiCxhdaGKLi4C0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a79cec2ea4d3..210867afb4cf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14477,6 +14477,8 @@ self: super: with self; { types-aiobotocore-iotthingsgraph + types-aiobotocore-iottwinmaker + types-aiobotocore-xray ; From 5380fb71d20f6c819886a524988240faeaa25d0f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:45 -0700 Subject: [PATCH 174/420] python3Packages.types-aiobotocore-iotwireless: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6413efc4723d..81fd85537a1d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -378,5 +378,7 @@ rec { types-aiobotocore-iottwinmaker = buildTypesAiobotocorePackage "iottwinmaker" "2.6.0" "sha256-/h85AoG+poq4t0EvpXdofWfbaEBD6CiCxhdaGKLi4C0="; + types-aiobotocore-iotwireless = buildTypesAiobotocorePackage "iotwireless" "2.6.0" "sha256-kuOboqDTHpdSW6vD/JGOdLL2U639wM+2V2KaSm1j0xo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 210867afb4cf..a02b73ea7512 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14479,6 +14479,8 @@ self: super: with self; { types-aiobotocore-iottwinmaker + types-aiobotocore-iotwireless + types-aiobotocore-xray ; From 819d54c8f0bdb2b71ae344993aef42f0fd98c1f7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:49 -0700 Subject: [PATCH 175/420] python3Packages.types-aiobotocore-ivs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 81fd85537a1d..b67dfc08de39 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -380,5 +380,7 @@ rec { types-aiobotocore-iotwireless = buildTypesAiobotocorePackage "iotwireless" "2.6.0" "sha256-kuOboqDTHpdSW6vD/JGOdLL2U639wM+2V2KaSm1j0xo="; + types-aiobotocore-ivs = buildTypesAiobotocorePackage "ivs" "2.6.0" "sha256-CiMKW2suhsU2dZsLQkL3hK2qKRJ56FS4Ix7Dt347bMA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a02b73ea7512..1c3b472e7ab5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14481,6 +14481,8 @@ self: super: with self; { types-aiobotocore-iotwireless + types-aiobotocore-ivs + types-aiobotocore-xray ; From 8bc24e819bd35511675b33c2ac9222775e12ee4b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:54 -0700 Subject: [PATCH 176/420] python3Packages.types-aiobotocore-ivs-realtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b67dfc08de39..be34c778d23d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -382,5 +382,7 @@ rec { types-aiobotocore-ivs = buildTypesAiobotocorePackage "ivs" "2.6.0" "sha256-CiMKW2suhsU2dZsLQkL3hK2qKRJ56FS4Ix7Dt347bMA="; + types-aiobotocore-ivs-realtime = buildTypesAiobotocorePackage "ivs-realtime" "2.6.0" "sha256-y4RRQdjaJS9GLW7HUNC9f3kWCOAGijlisrlB0MYQ1As="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1c3b472e7ab5..49d2964cfa6b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14483,6 +14483,8 @@ self: super: with self; { types-aiobotocore-ivs + types-aiobotocore-ivs-realtime + types-aiobotocore-xray ; From e9f41cd17f50e0506ffc8744862fe51c87bca2db Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:04:58 -0700 Subject: [PATCH 177/420] python3Packages.types-aiobotocore-ivschat: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index be34c778d23d..804eee744789 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -384,5 +384,7 @@ rec { types-aiobotocore-ivs-realtime = buildTypesAiobotocorePackage "ivs-realtime" "2.6.0" "sha256-y4RRQdjaJS9GLW7HUNC9f3kWCOAGijlisrlB0MYQ1As="; + types-aiobotocore-ivschat = buildTypesAiobotocorePackage "ivschat" "2.6.0" "sha256-5ANdk601wY6vtjYbe8CxtY9lK4Fe6wbl5uB6Mq6uqII="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 49d2964cfa6b..d1e73070e162 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14485,6 +14485,8 @@ self: super: with self; { types-aiobotocore-ivs-realtime + types-aiobotocore-ivschat + types-aiobotocore-xray ; From 3deb05efaead35cc977b5cc40d2f1690105fa0fc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:03 -0700 Subject: [PATCH 178/420] python3Packages.types-aiobotocore-kafka: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 804eee744789..282af55fc1fd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -386,5 +386,7 @@ rec { types-aiobotocore-ivschat = buildTypesAiobotocorePackage "ivschat" "2.6.0" "sha256-5ANdk601wY6vtjYbe8CxtY9lK4Fe6wbl5uB6Mq6uqII="; + types-aiobotocore-kafka = buildTypesAiobotocorePackage "kafka" "2.6.0" "sha256-cvmNob4pGa18W/2uh16zFJ58f0MHRDL2LwOKrsO16uI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d1e73070e162..9447c97ba296 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14487,6 +14487,8 @@ self: super: with self; { types-aiobotocore-ivschat + types-aiobotocore-kafka + types-aiobotocore-xray ; From 0979084f11549b79a485305f4305205ffe7cd9d3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:07 -0700 Subject: [PATCH 179/420] python3Packages.types-aiobotocore-kafkaconnect: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 282af55fc1fd..e32ac7a0074b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -388,5 +388,7 @@ rec { types-aiobotocore-kafka = buildTypesAiobotocorePackage "kafka" "2.6.0" "sha256-cvmNob4pGa18W/2uh16zFJ58f0MHRDL2LwOKrsO16uI="; + types-aiobotocore-kafkaconnect = buildTypesAiobotocorePackage "kafkaconnect" "2.6.0" "sha256-pOk51+FrlKDNPPDaa1mf3HjpCqlUskeRYITkFp91l6M="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9447c97ba296..73351790a26a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14489,6 +14489,8 @@ self: super: with self; { types-aiobotocore-kafka + types-aiobotocore-kafkaconnect + types-aiobotocore-xray ; From 26adbdfe8b5d9bc2be51a9642d058caa0b14d434 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:12 -0700 Subject: [PATCH 180/420] python3Packages.types-aiobotocore-kendra: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e32ac7a0074b..d05a893cf7d0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -390,5 +390,7 @@ rec { types-aiobotocore-kafkaconnect = buildTypesAiobotocorePackage "kafkaconnect" "2.6.0" "sha256-pOk51+FrlKDNPPDaa1mf3HjpCqlUskeRYITkFp91l6M="; + types-aiobotocore-kendra = buildTypesAiobotocorePackage "kendra" "2.6.0" "sha256-1WeJI++z4QiF0bZ4FyNgoNWY6X62ZCyq7PGNM9urFn4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 73351790a26a..b2efe8982a7b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14491,6 +14491,8 @@ self: super: with self; { types-aiobotocore-kafkaconnect + types-aiobotocore-kendra + types-aiobotocore-xray ; From 30e6700c68f791b75dd14077d3d18310299e5a81 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:17 -0700 Subject: [PATCH 181/420] python3Packages.types-aiobotocore-kendra-ranking: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d05a893cf7d0..10423197a15e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -392,5 +392,7 @@ rec { types-aiobotocore-kendra = buildTypesAiobotocorePackage "kendra" "2.6.0" "sha256-1WeJI++z4QiF0bZ4FyNgoNWY6X62ZCyq7PGNM9urFn4="; + types-aiobotocore-kendra-ranking = buildTypesAiobotocorePackage "kendra-ranking" "2.6.0" "sha256-uaeHdW8lew6jq2KQApkY76eWRkYVLffN0h71icP9viE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b2efe8982a7b..2bd980313428 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14493,6 +14493,8 @@ self: super: with self; { types-aiobotocore-kendra + types-aiobotocore-kendra-ranking + types-aiobotocore-xray ; From 0b6b33fb037129f1d5e5839232d9bf9345e3643c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:21 -0700 Subject: [PATCH 182/420] python3Packages.types-aiobotocore-keyspaces: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 10423197a15e..e9bcc1ac718b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -394,5 +394,7 @@ rec { types-aiobotocore-kendra-ranking = buildTypesAiobotocorePackage "kendra-ranking" "2.6.0" "sha256-uaeHdW8lew6jq2KQApkY76eWRkYVLffN0h71icP9viE="; + types-aiobotocore-keyspaces = buildTypesAiobotocorePackage "keyspaces" "2.6.0" "sha256-vbWWkLbVnzfWHp3Yy3S6mh0+tHrkA/5Krw4GVSdILls="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2bd980313428..3e4707c65033 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14495,6 +14495,8 @@ self: super: with self; { types-aiobotocore-kendra-ranking + types-aiobotocore-keyspaces + types-aiobotocore-xray ; From 4ca9e1d3f2538aafc5c08ef75126828b2721666f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:25 -0700 Subject: [PATCH 183/420] python3Packages.types-aiobotocore-kinesis: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e9bcc1ac718b..3d66c0193ed2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -396,5 +396,7 @@ rec { types-aiobotocore-keyspaces = buildTypesAiobotocorePackage "keyspaces" "2.6.0" "sha256-vbWWkLbVnzfWHp3Yy3S6mh0+tHrkA/5Krw4GVSdILls="; + types-aiobotocore-kinesis = buildTypesAiobotocorePackage "kinesis" "2.6.0" "sha256-n5u7dzAnZ7YRGIC2qyynlsALR7tONulc0ZmimW+xotk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3e4707c65033..2d4b2546a835 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14497,6 +14497,8 @@ self: super: with self; { types-aiobotocore-keyspaces + types-aiobotocore-kinesis + types-aiobotocore-xray ; From f6a7de8b204021816df25220a75eb1be97b2de55 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:30 -0700 Subject: [PATCH 184/420] python3Packages.types-aiobotocore-kinesis-video-archived-media: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3d66c0193ed2..e360f79dfe1c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -398,5 +398,7 @@ rec { types-aiobotocore-kinesis = buildTypesAiobotocorePackage "kinesis" "2.6.0" "sha256-n5u7dzAnZ7YRGIC2qyynlsALR7tONulc0ZmimW+xotk="; + types-aiobotocore-kinesis-video-archived-media = buildTypesAiobotocorePackage "kinesis-video-archived-media" "2.6.0" "sha256-mjY7GbQ20pzL38tQMoluJISpaxk/IreluvmX7XsLfTg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2d4b2546a835..b545a0dfd495 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14499,6 +14499,8 @@ self: super: with self; { types-aiobotocore-kinesis + types-aiobotocore-kinesis-video-archived-media + types-aiobotocore-xray ; From 52f606ed992681c6f65271568f548be6fb27a3e2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:35 -0700 Subject: [PATCH 185/420] python3Packages.types-aiobotocore-kinesis-video-media: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e360f79dfe1c..458bb2082253 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -400,5 +400,7 @@ rec { types-aiobotocore-kinesis-video-archived-media = buildTypesAiobotocorePackage "kinesis-video-archived-media" "2.6.0" "sha256-mjY7GbQ20pzL38tQMoluJISpaxk/IreluvmX7XsLfTg="; + types-aiobotocore-kinesis-video-media = buildTypesAiobotocorePackage "kinesis-video-media" "2.6.0" "sha256-8kK4JurIaid4k0BkpoZkaosn7cOIyMTt0RXnoJZUtSc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b545a0dfd495..8a10adb007ec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14501,6 +14501,8 @@ self: super: with self; { types-aiobotocore-kinesis-video-archived-media + types-aiobotocore-kinesis-video-media + types-aiobotocore-xray ; From c149ee2e72404602adadde4b89b2a3609fc01779 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:39 -0700 Subject: [PATCH 186/420] python3Packages.types-aiobotocore-kinesis-video-signaling: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 458bb2082253..a1bce6eb5457 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -402,5 +402,7 @@ rec { types-aiobotocore-kinesis-video-media = buildTypesAiobotocorePackage "kinesis-video-media" "2.6.0" "sha256-8kK4JurIaid4k0BkpoZkaosn7cOIyMTt0RXnoJZUtSc="; + types-aiobotocore-kinesis-video-signaling = buildTypesAiobotocorePackage "kinesis-video-signaling" "2.6.0" "sha256-nUOb5NwCsz/7Z0bUMUsxysn2bgNi+yTvyGGCkwzCU1o="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8a10adb007ec..9d0a94145ffc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14503,6 +14503,8 @@ self: super: with self; { types-aiobotocore-kinesis-video-media + types-aiobotocore-kinesis-video-signaling + types-aiobotocore-xray ; From 46382991caddfe8c80395c4939be93f9b1fa4e43 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:44 -0700 Subject: [PATCH 187/420] python3Packages.types-aiobotocore-kinesis-video-webrtc-storage: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a1bce6eb5457..f0720c1f5508 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -404,5 +404,7 @@ rec { types-aiobotocore-kinesis-video-signaling = buildTypesAiobotocorePackage "kinesis-video-signaling" "2.6.0" "sha256-nUOb5NwCsz/7Z0bUMUsxysn2bgNi+yTvyGGCkwzCU1o="; + types-aiobotocore-kinesis-video-webrtc-storage = buildTypesAiobotocorePackage "kinesis-video-webrtc-storage" "2.6.0" "sha256-Tw+ozecMKAw56x47Wqq3wwwcmDT+5LvoUDAZSX0z2I4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9d0a94145ffc..9b4501a0a8b8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14505,6 +14505,8 @@ self: super: with self; { types-aiobotocore-kinesis-video-signaling + types-aiobotocore-kinesis-video-webrtc-storage + types-aiobotocore-xray ; From e07f87ae13e8114ca7659a923e0d1f06770dc662 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:48 -0700 Subject: [PATCH 188/420] python3Packages.types-aiobotocore-kinesisanalytics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f0720c1f5508..0d70a683e088 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -406,5 +406,7 @@ rec { types-aiobotocore-kinesis-video-webrtc-storage = buildTypesAiobotocorePackage "kinesis-video-webrtc-storage" "2.6.0" "sha256-Tw+ozecMKAw56x47Wqq3wwwcmDT+5LvoUDAZSX0z2I4="; + types-aiobotocore-kinesisanalytics = buildTypesAiobotocorePackage "kinesisanalytics" "2.6.0" "sha256-QY5tN7QVP2WC7P/se6wNrnLp3sJVIr/rTEs9ePpADPE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b4501a0a8b8..b07ca5e4fbe9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14507,6 +14507,8 @@ self: super: with self; { types-aiobotocore-kinesis-video-webrtc-storage + types-aiobotocore-kinesisanalytics + types-aiobotocore-xray ; From 520485c29991ec31c87cf3de866787b9dd30fec0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:52 -0700 Subject: [PATCH 189/420] python3Packages.types-aiobotocore-kinesisanalyticsv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0d70a683e088..e2d5443b7f71 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -408,5 +408,7 @@ rec { types-aiobotocore-kinesisanalytics = buildTypesAiobotocorePackage "kinesisanalytics" "2.6.0" "sha256-QY5tN7QVP2WC7P/se6wNrnLp3sJVIr/rTEs9ePpADPE="; + types-aiobotocore-kinesisanalyticsv2 = buildTypesAiobotocorePackage "kinesisanalyticsv2" "2.6.0" "sha256-aedmxGOuU70uX/+bQL8coUWBpk9IQHAL7VqusH8zPbs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b07ca5e4fbe9..fa6adc7c40e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14509,6 +14509,8 @@ self: super: with self; { types-aiobotocore-kinesisanalytics + types-aiobotocore-kinesisanalyticsv2 + types-aiobotocore-xray ; From 3f39b13999511e1a589d77d2564106b5f201194e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:05:57 -0700 Subject: [PATCH 190/420] python3Packages.types-aiobotocore-kinesisvideo: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e2d5443b7f71..8aef804351ff 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -410,5 +410,7 @@ rec { types-aiobotocore-kinesisanalyticsv2 = buildTypesAiobotocorePackage "kinesisanalyticsv2" "2.6.0" "sha256-aedmxGOuU70uX/+bQL8coUWBpk9IQHAL7VqusH8zPbs="; + types-aiobotocore-kinesisvideo = buildTypesAiobotocorePackage "kinesisvideo" "2.6.0" "sha256-wyT6YahL3sRGHQcBTAyLd7l75wVWRp2waS+Q46Me/ok="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fa6adc7c40e8..d83aad4c46ab 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14511,6 +14511,8 @@ self: super: with self; { types-aiobotocore-kinesisanalyticsv2 + types-aiobotocore-kinesisvideo + types-aiobotocore-xray ; From fc9076bd86e7317251dce5b42ee7ee3aba33c8d0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:01 -0700 Subject: [PATCH 191/420] python3Packages.types-aiobotocore-kms: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8aef804351ff..c8916b4a0d8c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -412,5 +412,7 @@ rec { types-aiobotocore-kinesisvideo = buildTypesAiobotocorePackage "kinesisvideo" "2.6.0" "sha256-wyT6YahL3sRGHQcBTAyLd7l75wVWRp2waS+Q46Me/ok="; + types-aiobotocore-kms = buildTypesAiobotocorePackage "kms" "2.6.0" "sha256-mY26ICYSENAruEn4986zxi5R9ong4nyuRAHgMZDliqo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d83aad4c46ab..287988db9151 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14513,6 +14513,8 @@ self: super: with self; { types-aiobotocore-kinesisvideo + types-aiobotocore-kms + types-aiobotocore-xray ; From a875369fcb0551081fbbeb680b869efb78368a11 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:06 -0700 Subject: [PATCH 192/420] python3Packages.types-aiobotocore-lakeformation: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c8916b4a0d8c..62d8b2984ebb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -414,5 +414,7 @@ rec { types-aiobotocore-kms = buildTypesAiobotocorePackage "kms" "2.6.0" "sha256-mY26ICYSENAruEn4986zxi5R9ong4nyuRAHgMZDliqo="; + types-aiobotocore-lakeformation = buildTypesAiobotocorePackage "lakeformation" "2.6.0" "sha256-CR3Uopf6izBTlR16yIA3CUikWrS3OzkFZFpbJNDhBVs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 287988db9151..93371e0769b9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14515,6 +14515,8 @@ self: super: with self; { types-aiobotocore-kms + types-aiobotocore-lakeformation + types-aiobotocore-xray ; From ed203cd7a154a75b093019f594818ffa77572d3f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:10 -0700 Subject: [PATCH 193/420] python3Packages.types-aiobotocore-lambda: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 62d8b2984ebb..373f5b37bcf3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -416,5 +416,7 @@ rec { types-aiobotocore-lakeformation = buildTypesAiobotocorePackage "lakeformation" "2.6.0" "sha256-CR3Uopf6izBTlR16yIA3CUikWrS3OzkFZFpbJNDhBVs="; + types-aiobotocore-lambda = buildTypesAiobotocorePackage "lambda" "2.6.0" "sha256-pkZMQu5himEPO7z/AF7INb7H7jjmkyQV1ql2epF4yYA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93371e0769b9..f3f225906f29 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14517,6 +14517,8 @@ self: super: with self; { types-aiobotocore-lakeformation + types-aiobotocore-lambda + types-aiobotocore-xray ; From 4103b336358c4b29d5b7cf6232196a7ce622ed6e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:15 -0700 Subject: [PATCH 194/420] python3Packages.types-aiobotocore-lex-models: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 373f5b37bcf3..fc95c3ca85dc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -418,5 +418,7 @@ rec { types-aiobotocore-lambda = buildTypesAiobotocorePackage "lambda" "2.6.0" "sha256-pkZMQu5himEPO7z/AF7INb7H7jjmkyQV1ql2epF4yYA="; + types-aiobotocore-lex-models = buildTypesAiobotocorePackage "lex-models" "2.6.0" "sha256-sIQ85LzkQgMvVfAKEc5HxIXx85Tckx4HVXcex2hxZ6I="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3f225906f29..eb3b1c56a930 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14519,6 +14519,8 @@ self: super: with self; { types-aiobotocore-lambda + types-aiobotocore-lex-models + types-aiobotocore-xray ; From f9f66099ed87ecb86006b4df4953ca2c38e8f505 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:19 -0700 Subject: [PATCH 195/420] python3Packages.types-aiobotocore-lex-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fc95c3ca85dc..587a92c1ad98 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -420,5 +420,7 @@ rec { types-aiobotocore-lex-models = buildTypesAiobotocorePackage "lex-models" "2.6.0" "sha256-sIQ85LzkQgMvVfAKEc5HxIXx85Tckx4HVXcex2hxZ6I="; + types-aiobotocore-lex-runtime = buildTypesAiobotocorePackage "lex-runtime" "2.6.0" "sha256-IZvLF0Wg7od/LqC2bcCxtvNun0n9JViuXE/CQMoBdMc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eb3b1c56a930..25dbbf5bb6e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14521,6 +14521,8 @@ self: super: with self; { types-aiobotocore-lex-models + types-aiobotocore-lex-runtime + types-aiobotocore-xray ; From f6bfe08418cb470c5782c3c0a850f5ed44e0fd75 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:24 -0700 Subject: [PATCH 196/420] python3Packages.types-aiobotocore-lexv2-models: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 587a92c1ad98..e2f763131bd5 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -422,5 +422,7 @@ rec { types-aiobotocore-lex-runtime = buildTypesAiobotocorePackage "lex-runtime" "2.6.0" "sha256-IZvLF0Wg7od/LqC2bcCxtvNun0n9JViuXE/CQMoBdMc="; + types-aiobotocore-lexv2-models = buildTypesAiobotocorePackage "lexv2-models" "2.6.0" "sha256-9eebhFQqnsParfZ1poJJX/ehx1lNHIynFwXEzAo10JM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 25dbbf5bb6e6..e00755e9971f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14523,6 +14523,8 @@ self: super: with self; { types-aiobotocore-lex-runtime + types-aiobotocore-lexv2-models + types-aiobotocore-xray ; From 0ecd617b06a7116b1d4fa1751466c665ac59b462 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:28 -0700 Subject: [PATCH 197/420] python3Packages.types-aiobotocore-lexv2-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e2f763131bd5..a6e16f2a97b6 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -424,5 +424,7 @@ rec { types-aiobotocore-lexv2-models = buildTypesAiobotocorePackage "lexv2-models" "2.6.0" "sha256-9eebhFQqnsParfZ1poJJX/ehx1lNHIynFwXEzAo10JM="; + types-aiobotocore-lexv2-runtime = buildTypesAiobotocorePackage "lexv2-runtime" "2.6.0" "sha256-ot+oM2a+CA/92d+tY54tqdOlsZWReknv+Pt3Aw8V1GU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e00755e9971f..80c52238d6b2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14525,6 +14525,8 @@ self: super: with self; { types-aiobotocore-lexv2-models + types-aiobotocore-lexv2-runtime + types-aiobotocore-xray ; From 2890af6c4f9ac3ed94970a4d68ca52d3e16f3df4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:33 -0700 Subject: [PATCH 198/420] python3Packages.types-aiobotocore-license-manager: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a6e16f2a97b6..668966f2d2fb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -426,5 +426,7 @@ rec { types-aiobotocore-lexv2-runtime = buildTypesAiobotocorePackage "lexv2-runtime" "2.6.0" "sha256-ot+oM2a+CA/92d+tY54tqdOlsZWReknv+Pt3Aw8V1GU="; + types-aiobotocore-license-manager = buildTypesAiobotocorePackage "license-manager" "2.6.0" "sha256-iNlzgcjg3VrIZJEi2f+7msFqrfWsUS24k7OERB28uRo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 80c52238d6b2..f6d4cf22dba7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14527,6 +14527,8 @@ self: super: with self; { types-aiobotocore-lexv2-runtime + types-aiobotocore-license-manager + types-aiobotocore-xray ; From c05b14145860e838ee64e16052dab57cc52b1d94 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:37 -0700 Subject: [PATCH 199/420] python3Packages.types-aiobotocore-license-manager-linux-subscriptions: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 668966f2d2fb..9e8eb9eb0285 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -428,5 +428,7 @@ rec { types-aiobotocore-license-manager = buildTypesAiobotocorePackage "license-manager" "2.6.0" "sha256-iNlzgcjg3VrIZJEi2f+7msFqrfWsUS24k7OERB28uRo="; + types-aiobotocore-license-manager-linux-subscriptions = buildTypesAiobotocorePackage "license-manager-linux-subscriptions" "2.6.0" "sha256-1exWgnbG5ikd1pHWClPGq3Luku5qyTtG6pwvqL/zWdk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f6d4cf22dba7..1f545c07696e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14529,6 +14529,8 @@ self: super: with self; { types-aiobotocore-license-manager + types-aiobotocore-license-manager-linux-subscriptions + types-aiobotocore-xray ; From cdc45625f6bf1d86a9e9337e179a560c9ea0acc3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:42 -0700 Subject: [PATCH 200/420] python3Packages.types-aiobotocore-license-manager-user-subscriptions: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9e8eb9eb0285..291ccbf0474d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -430,5 +430,7 @@ rec { types-aiobotocore-license-manager-linux-subscriptions = buildTypesAiobotocorePackage "license-manager-linux-subscriptions" "2.6.0" "sha256-1exWgnbG5ikd1pHWClPGq3Luku5qyTtG6pwvqL/zWdk="; + types-aiobotocore-license-manager-user-subscriptions = buildTypesAiobotocorePackage "license-manager-user-subscriptions" "2.6.0" "sha256-0fLwCr5eDRxcGZdw3sqExh8awX1qu5XmEYMD63xhD3w="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1f545c07696e..186881eb61b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14531,6 +14531,8 @@ self: super: with self; { types-aiobotocore-license-manager-linux-subscriptions + types-aiobotocore-license-manager-user-subscriptions + types-aiobotocore-xray ; From 6aebd256194c9f47b665261c1c93a73e10cfd41c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:46 -0700 Subject: [PATCH 201/420] python3Packages.types-aiobotocore-lightsail: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 291ccbf0474d..6f063d5c14e3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -432,5 +432,7 @@ rec { types-aiobotocore-license-manager-user-subscriptions = buildTypesAiobotocorePackage "license-manager-user-subscriptions" "2.6.0" "sha256-0fLwCr5eDRxcGZdw3sqExh8awX1qu5XmEYMD63xhD3w="; + types-aiobotocore-lightsail = buildTypesAiobotocorePackage "lightsail" "2.6.0" "sha256-eiibXP8S+xvn+PTX8cd3WiN6yL2JmjK9EG9BryexFjY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 186881eb61b6..15e505cb5cb6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14533,6 +14533,8 @@ self: super: with self; { types-aiobotocore-license-manager-user-subscriptions + types-aiobotocore-lightsail + types-aiobotocore-xray ; From 4a8c7fcf7f6278bc9845f4a6ecec8b63bef116d3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:51 -0700 Subject: [PATCH 202/420] python3Packages.types-aiobotocore-location: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6f063d5c14e3..e28dd241b330 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -434,5 +434,7 @@ rec { types-aiobotocore-lightsail = buildTypesAiobotocorePackage "lightsail" "2.6.0" "sha256-eiibXP8S+xvn+PTX8cd3WiN6yL2JmjK9EG9BryexFjY="; + types-aiobotocore-location = buildTypesAiobotocorePackage "location" "2.6.0" "sha256-3zQZyDgaMuj5SAQ7Nc+XzF5dUi1E9bAjv9mIscJxfqM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 15e505cb5cb6..30a3b5e603d2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14535,6 +14535,8 @@ self: super: with self; { types-aiobotocore-lightsail + types-aiobotocore-location + types-aiobotocore-xray ; From 27d4a7e6fbc54f7ca1e9a28573b6d301fa02618b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:06:55 -0700 Subject: [PATCH 203/420] python3Packages.types-aiobotocore-logs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e28dd241b330..647ca0fa9bf5 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -436,5 +436,7 @@ rec { types-aiobotocore-location = buildTypesAiobotocorePackage "location" "2.6.0" "sha256-3zQZyDgaMuj5SAQ7Nc+XzF5dUi1E9bAjv9mIscJxfqM="; + types-aiobotocore-logs = buildTypesAiobotocorePackage "logs" "2.6.0" "sha256-qyA1uCrAFGZHMlfL8Dou1YkM6rb9xwcrDQmteSqOadM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 30a3b5e603d2..2cacc380c02c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14537,6 +14537,8 @@ self: super: with self; { types-aiobotocore-location + types-aiobotocore-logs + types-aiobotocore-xray ; From 566053f83f01c2495eb7772c8e4dc76f0edb1d4e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:00 -0700 Subject: [PATCH 204/420] python3Packages.types-aiobotocore-lookoutequipment: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 647ca0fa9bf5..8ee5e8c6a734 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -438,5 +438,7 @@ rec { types-aiobotocore-logs = buildTypesAiobotocorePackage "logs" "2.6.0" "sha256-qyA1uCrAFGZHMlfL8Dou1YkM6rb9xwcrDQmteSqOadM="; + types-aiobotocore-lookoutequipment = buildTypesAiobotocorePackage "lookoutequipment" "2.6.0" "sha256-ilPodAPj7J6xVCPEjsBQcQ4I5dNMEM2/hM1j8PJMUto="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cacc380c02c..9b73e08d8a6f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14539,6 +14539,8 @@ self: super: with self; { types-aiobotocore-logs + types-aiobotocore-lookoutequipment + types-aiobotocore-xray ; From 3f06d400ed21c35c0ae072419a1baa0b1c7c0bb3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:04 -0700 Subject: [PATCH 205/420] python3Packages.types-aiobotocore-lookoutmetrics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8ee5e8c6a734..49be541b7de2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -440,5 +440,7 @@ rec { types-aiobotocore-lookoutequipment = buildTypesAiobotocorePackage "lookoutequipment" "2.6.0" "sha256-ilPodAPj7J6xVCPEjsBQcQ4I5dNMEM2/hM1j8PJMUto="; + types-aiobotocore-lookoutmetrics = buildTypesAiobotocorePackage "lookoutmetrics" "2.6.0" "sha256-m/13nELWqdPNkZXmA3FhArlOKhB1CcbTaAsI9Iqzrik="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b73e08d8a6f..f68a28280a37 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14541,6 +14541,8 @@ self: super: with self; { types-aiobotocore-lookoutequipment + types-aiobotocore-lookoutmetrics + types-aiobotocore-xray ; From ca430ffc1d70422b809d0a3e890109c8f61a656a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:09 -0700 Subject: [PATCH 206/420] python3Packages.types-aiobotocore-lookoutvision: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 49be541b7de2..09f1a571966a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -442,5 +442,7 @@ rec { types-aiobotocore-lookoutmetrics = buildTypesAiobotocorePackage "lookoutmetrics" "2.6.0" "sha256-m/13nELWqdPNkZXmA3FhArlOKhB1CcbTaAsI9Iqzrik="; + types-aiobotocore-lookoutvision = buildTypesAiobotocorePackage "lookoutvision" "2.6.0" "sha256-gW+GFoQhI1Mj412Gh3MXfoSMKpNscUB4AqC9WMF4ACI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f68a28280a37..b102d8cb4357 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14543,6 +14543,8 @@ self: super: with self; { types-aiobotocore-lookoutmetrics + types-aiobotocore-lookoutvision + types-aiobotocore-xray ; From ae00053c5ed7e21a0a0f3ce402cde256294aaaa3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:13 -0700 Subject: [PATCH 207/420] python3Packages.types-aiobotocore-m2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 09f1a571966a..d3c4b2dc4e45 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -444,5 +444,7 @@ rec { types-aiobotocore-lookoutvision = buildTypesAiobotocorePackage "lookoutvision" "2.6.0" "sha256-gW+GFoQhI1Mj412Gh3MXfoSMKpNscUB4AqC9WMF4ACI="; + types-aiobotocore-m2 = buildTypesAiobotocorePackage "m2" "2.6.0" "sha256-DoFG4FxvJFnN54G5F2LZY5M0aYlCU9H5wwnAsiHaRmc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b102d8cb4357..7262ec9edf35 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14545,6 +14545,8 @@ self: super: with self; { types-aiobotocore-lookoutvision + types-aiobotocore-m2 + types-aiobotocore-xray ; From 6fa1d699413f189d731cd6b125b710e26fbf095a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:18 -0700 Subject: [PATCH 208/420] python3Packages.types-aiobotocore-machinelearning: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d3c4b2dc4e45..f70d3f6f0387 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -446,5 +446,7 @@ rec { types-aiobotocore-m2 = buildTypesAiobotocorePackage "m2" "2.6.0" "sha256-DoFG4FxvJFnN54G5F2LZY5M0aYlCU9H5wwnAsiHaRmc="; + types-aiobotocore-machinelearning = buildTypesAiobotocorePackage "machinelearning" "2.6.0" "sha256-VZajCqSzofQLUBrXbMzdaPmbIDNp5YuUUk1wberVcFs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7262ec9edf35..f4b8e6e20d3a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14547,6 +14547,8 @@ self: super: with self; { types-aiobotocore-m2 + types-aiobotocore-machinelearning + types-aiobotocore-xray ; From 0891a63354353b08b7553439655bef3270221ed4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:23 -0700 Subject: [PATCH 209/420] python3Packages.types-aiobotocore-macie: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f70d3f6f0387..da3a837f0a97 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -448,5 +448,7 @@ rec { types-aiobotocore-machinelearning = buildTypesAiobotocorePackage "machinelearning" "2.6.0" "sha256-VZajCqSzofQLUBrXbMzdaPmbIDNp5YuUUk1wberVcFs="; + types-aiobotocore-macie = buildTypesAiobotocorePackage "macie" "2.6.0" "sha256-gbl7jEgjk4twoxGM+WRg4MZ/nkGg7btiPOsPptR7yfw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f4b8e6e20d3a..cc1468ba8d2d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14549,6 +14549,8 @@ self: super: with self; { types-aiobotocore-machinelearning + types-aiobotocore-macie + types-aiobotocore-xray ; From 94901ca0a2ab24607d24dde1916873016335f4f3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:27 -0700 Subject: [PATCH 210/420] python3Packages.types-aiobotocore-macie2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index da3a837f0a97..7d1e64b4f0c7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -450,5 +450,7 @@ rec { types-aiobotocore-macie = buildTypesAiobotocorePackage "macie" "2.6.0" "sha256-gbl7jEgjk4twoxGM+WRg4MZ/nkGg7btiPOsPptR7yfw="; + types-aiobotocore-macie2 = buildTypesAiobotocorePackage "macie2" "2.6.0" "sha256-IX2KY/guFLJ6jL4gRdTS6cQbNuFJuz8xa4QzqZ8j5h8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cc1468ba8d2d..0cb3a943c08e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14551,6 +14551,8 @@ self: super: with self; { types-aiobotocore-macie + types-aiobotocore-macie2 + types-aiobotocore-xray ; From 3c1daca71e6495287a67320218e6d147a3bbd3ee Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:32 -0700 Subject: [PATCH 211/420] python3Packages.types-aiobotocore-managedblockchain: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7d1e64b4f0c7..58e78a69285c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -452,5 +452,7 @@ rec { types-aiobotocore-macie2 = buildTypesAiobotocorePackage "macie2" "2.6.0" "sha256-IX2KY/guFLJ6jL4gRdTS6cQbNuFJuz8xa4QzqZ8j5h8="; + types-aiobotocore-managedblockchain = buildTypesAiobotocorePackage "managedblockchain" "2.6.0" "sha256-k/J7hBJDfGXMFR9jn7Tiec8bClrXIz6XyLMqLJad6oU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0cb3a943c08e..4eb5c84aa997 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14553,6 +14553,8 @@ self: super: with self; { types-aiobotocore-macie2 + types-aiobotocore-managedblockchain + types-aiobotocore-xray ; From f96b5b81b65a1bb6f96d922eab7948a9e5ab44c9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:36 -0700 Subject: [PATCH 212/420] python3Packages.types-aiobotocore-managedblockchain-query: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 58e78a69285c..f90a1ec9f413 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -454,5 +454,7 @@ rec { types-aiobotocore-managedblockchain = buildTypesAiobotocorePackage "managedblockchain" "2.6.0" "sha256-k/J7hBJDfGXMFR9jn7Tiec8bClrXIz6XyLMqLJad6oU="; + types-aiobotocore-managedblockchain-query = buildTypesAiobotocorePackage "managedblockchain-query" "2.6.0" "sha256-swmAlpVrP1eSvJatWaJL6QDfgZ0xzBttrpHt1aNULUk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4eb5c84aa997..9c11e69ba80a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14555,6 +14555,8 @@ self: super: with self; { types-aiobotocore-managedblockchain + types-aiobotocore-managedblockchain-query + types-aiobotocore-xray ; From 27832866a4517018fcece8606b78e024c64219ff Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:41 -0700 Subject: [PATCH 213/420] python3Packages.types-aiobotocore-marketplace-catalog: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f90a1ec9f413..4479d9ffc7c9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -456,5 +456,7 @@ rec { types-aiobotocore-managedblockchain-query = buildTypesAiobotocorePackage "managedblockchain-query" "2.6.0" "sha256-swmAlpVrP1eSvJatWaJL6QDfgZ0xzBttrpHt1aNULUk="; + types-aiobotocore-marketplace-catalog = buildTypesAiobotocorePackage "marketplace-catalog" "2.6.0" "sha256-9yD3FIFrRDMAckbztjrKeUEyXCUOggF5UfsPe5hcQ1Q="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9c11e69ba80a..bf48113dc37d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14557,6 +14557,8 @@ self: super: with self; { types-aiobotocore-managedblockchain-query + types-aiobotocore-marketplace-catalog + types-aiobotocore-xray ; From 48097e3906843402facdf1ac509746304a1d3bb2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:45 -0700 Subject: [PATCH 214/420] python3Packages.types-aiobotocore-marketplace-entitlement: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4479d9ffc7c9..93dd62d4b39c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -458,5 +458,7 @@ rec { types-aiobotocore-marketplace-catalog = buildTypesAiobotocorePackage "marketplace-catalog" "2.6.0" "sha256-9yD3FIFrRDMAckbztjrKeUEyXCUOggF5UfsPe5hcQ1Q="; + types-aiobotocore-marketplace-entitlement = buildTypesAiobotocorePackage "marketplace-entitlement" "2.6.0" "sha256-Q6S9pTfquW+Hv4uB9tbS/TEsC/i7iDfA+LyZCHq3cRI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bf48113dc37d..4737ae9d375d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14559,6 +14559,8 @@ self: super: with self; { types-aiobotocore-marketplace-catalog + types-aiobotocore-marketplace-entitlement + types-aiobotocore-xray ; From 9f21b0eb9d7933bc701cae95978ff7be7e38f8a7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:50 -0700 Subject: [PATCH 215/420] python3Packages.types-aiobotocore-marketplacecommerceanalytics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 93dd62d4b39c..5e548f95c1da 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -460,5 +460,7 @@ rec { types-aiobotocore-marketplace-entitlement = buildTypesAiobotocorePackage "marketplace-entitlement" "2.6.0" "sha256-Q6S9pTfquW+Hv4uB9tbS/TEsC/i7iDfA+LyZCHq3cRI="; + types-aiobotocore-marketplacecommerceanalytics = buildTypesAiobotocorePackage "marketplacecommerceanalytics" "2.6.0" "sha256-iyHFWN8tWgQoShTO6bJQB89K+4JVWjMihzjMr2Lssvw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4737ae9d375d..d3bd7566acb6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14561,6 +14561,8 @@ self: super: with self; { types-aiobotocore-marketplace-entitlement + types-aiobotocore-marketplacecommerceanalytics + types-aiobotocore-xray ; From faf8c1cfee0f3825c82ef1c48b5212275c215e5f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:54 -0700 Subject: [PATCH 216/420] python3Packages.types-aiobotocore-mediaconnect: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5e548f95c1da..6a58b2d4829f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -462,5 +462,7 @@ rec { types-aiobotocore-marketplacecommerceanalytics = buildTypesAiobotocorePackage "marketplacecommerceanalytics" "2.6.0" "sha256-iyHFWN8tWgQoShTO6bJQB89K+4JVWjMihzjMr2Lssvw="; + types-aiobotocore-mediaconnect = buildTypesAiobotocorePackage "mediaconnect" "2.6.0" "sha256-hEwlISpSm6r+a1MXxSH3UrBOiNu+Cx9d1T2RsFfrcyA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d3bd7566acb6..16c57f308c2a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14563,6 +14563,8 @@ self: super: with self; { types-aiobotocore-marketplacecommerceanalytics + types-aiobotocore-mediaconnect + types-aiobotocore-xray ; From d3db7af3c96ddf0944f4ec1c6a353219a0a73e8d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:07:59 -0700 Subject: [PATCH 217/420] python3Packages.types-aiobotocore-mediaconvert: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6a58b2d4829f..9596d16904e0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -464,5 +464,7 @@ rec { types-aiobotocore-mediaconnect = buildTypesAiobotocorePackage "mediaconnect" "2.6.0" "sha256-hEwlISpSm6r+a1MXxSH3UrBOiNu+Cx9d1T2RsFfrcyA="; + types-aiobotocore-mediaconvert = buildTypesAiobotocorePackage "mediaconvert" "2.6.0" "sha256-VdxG2yvN6g9UAn54OP6uafHGN+iHjNrfO4H5f5h6w18="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 16c57f308c2a..1eff65c994d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14565,6 +14565,8 @@ self: super: with self; { types-aiobotocore-mediaconnect + types-aiobotocore-mediaconvert + types-aiobotocore-xray ; From 20ae8688e08c67872c29e0eaba4a9cde1df284c8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:03 -0700 Subject: [PATCH 218/420] python3Packages.types-aiobotocore-medialive: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9596d16904e0..28bbd49c8bab 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -466,5 +466,7 @@ rec { types-aiobotocore-mediaconvert = buildTypesAiobotocorePackage "mediaconvert" "2.6.0" "sha256-VdxG2yvN6g9UAn54OP6uafHGN+iHjNrfO4H5f5h6w18="; + types-aiobotocore-medialive = buildTypesAiobotocorePackage "medialive" "2.6.0" "sha256-hrfqkhKWIcP+fjDaeFjvk6c6GBTgsY3yxPodx9fFpxk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1eff65c994d3..c49cab98a008 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14567,6 +14567,8 @@ self: super: with self; { types-aiobotocore-mediaconvert + types-aiobotocore-medialive + types-aiobotocore-xray ; From d60e05868c0aade0f5c8045117753aededa6d1ff Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:07 -0700 Subject: [PATCH 219/420] python3Packages.types-aiobotocore-mediapackage: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 28bbd49c8bab..eacf87623d66 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -468,5 +468,7 @@ rec { types-aiobotocore-medialive = buildTypesAiobotocorePackage "medialive" "2.6.0" "sha256-hrfqkhKWIcP+fjDaeFjvk6c6GBTgsY3yxPodx9fFpxk="; + types-aiobotocore-mediapackage = buildTypesAiobotocorePackage "mediapackage" "2.6.0" "sha256-c7XLKvwiQL6e0tWH0DmOyauTz3q5b0hOVpjVzR1rmH8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c49cab98a008..4758e62bbb5e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14569,6 +14569,8 @@ self: super: with self; { types-aiobotocore-medialive + types-aiobotocore-mediapackage + types-aiobotocore-xray ; From 3a4ef0473ede4abbd7369e4940331afca5c9219b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:12 -0700 Subject: [PATCH 220/420] python3Packages.types-aiobotocore-mediapackage-vod: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index eacf87623d66..a8f0fd9c5410 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -470,5 +470,7 @@ rec { types-aiobotocore-mediapackage = buildTypesAiobotocorePackage "mediapackage" "2.6.0" "sha256-c7XLKvwiQL6e0tWH0DmOyauTz3q5b0hOVpjVzR1rmH8="; + types-aiobotocore-mediapackage-vod = buildTypesAiobotocorePackage "mediapackage-vod" "2.6.0" "sha256-zw2mJFQgX9xqjsvldssfMeulgCEY0kqaNg+nUe9PpCc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4758e62bbb5e..20ceaa643bdd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14571,6 +14571,8 @@ self: super: with self; { types-aiobotocore-mediapackage + types-aiobotocore-mediapackage-vod + types-aiobotocore-xray ; From 8f49d96d1b6da9e2a8ae28db8a403c01b48cb49b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:17 -0700 Subject: [PATCH 221/420] python3Packages.types-aiobotocore-mediapackagev2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a8f0fd9c5410..11cce2f95395 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -472,5 +472,7 @@ rec { types-aiobotocore-mediapackage-vod = buildTypesAiobotocorePackage "mediapackage-vod" "2.6.0" "sha256-zw2mJFQgX9xqjsvldssfMeulgCEY0kqaNg+nUe9PpCc="; + types-aiobotocore-mediapackagev2 = buildTypesAiobotocorePackage "mediapackagev2" "2.6.0" "sha256-fdZn+f03iIzzkpSCdTh2uUY4WcU1DcyRxozP7SSkGyo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 20ceaa643bdd..65fad6b5003a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14573,6 +14573,8 @@ self: super: with self; { types-aiobotocore-mediapackage-vod + types-aiobotocore-mediapackagev2 + types-aiobotocore-xray ; From 2fc999ba80ff5a1cb2b1ce8e64dc0e5603c205a4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:21 -0700 Subject: [PATCH 222/420] python3Packages.types-aiobotocore-mediastore: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 11cce2f95395..6a9afc0e4ba7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -474,5 +474,7 @@ rec { types-aiobotocore-mediapackagev2 = buildTypesAiobotocorePackage "mediapackagev2" "2.6.0" "sha256-fdZn+f03iIzzkpSCdTh2uUY4WcU1DcyRxozP7SSkGyo="; + types-aiobotocore-mediastore = buildTypesAiobotocorePackage "mediastore" "2.6.0" "sha256-KoZKeJPlIWhgifauIOSSLZaSJWn3E0lSNUOhKPfI0Go="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 65fad6b5003a..9ed4620e2b3f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14575,6 +14575,8 @@ self: super: with self; { types-aiobotocore-mediapackagev2 + types-aiobotocore-mediastore + types-aiobotocore-xray ; From fe13300f3349b4d88cb7fea118ea3d7b76d3d594 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:26 -0700 Subject: [PATCH 223/420] python3Packages.types-aiobotocore-mediastore-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6a9afc0e4ba7..7181983f99bc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -476,5 +476,7 @@ rec { types-aiobotocore-mediastore = buildTypesAiobotocorePackage "mediastore" "2.6.0" "sha256-KoZKeJPlIWhgifauIOSSLZaSJWn3E0lSNUOhKPfI0Go="; + types-aiobotocore-mediastore-data = buildTypesAiobotocorePackage "mediastore-data" "2.6.0" "sha256-HT/Kvi15YJLEno70ayEXQLPi9Y6NlRD8134IRJ7gdRY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9ed4620e2b3f..94b8b511655c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14577,6 +14577,8 @@ self: super: with self; { types-aiobotocore-mediastore + types-aiobotocore-mediastore-data + types-aiobotocore-xray ; From 018ada9826b31c4c9a0480ea2afe3d1f294254f0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:30 -0700 Subject: [PATCH 224/420] python3Packages.types-aiobotocore-mediatailor: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7181983f99bc..cad4e895f381 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -478,5 +478,7 @@ rec { types-aiobotocore-mediastore-data = buildTypesAiobotocorePackage "mediastore-data" "2.6.0" "sha256-HT/Kvi15YJLEno70ayEXQLPi9Y6NlRD8134IRJ7gdRY="; + types-aiobotocore-mediatailor = buildTypesAiobotocorePackage "mediatailor" "2.6.0" "sha256-3F1Gpd2kOU1rS7iSyDr0pkRECqYsyeeEQKDH2OO9H/A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 94b8b511655c..9d521c770ae9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14579,6 +14579,8 @@ self: super: with self; { types-aiobotocore-mediastore-data + types-aiobotocore-mediatailor + types-aiobotocore-xray ; From 113ea948097ddd9e734d8c916f5c23172b8191ff Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:35 -0700 Subject: [PATCH 225/420] python3Packages.types-aiobotocore-medical-imaging: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index cad4e895f381..79fc6ff99b90 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -480,5 +480,7 @@ rec { types-aiobotocore-mediatailor = buildTypesAiobotocorePackage "mediatailor" "2.6.0" "sha256-3F1Gpd2kOU1rS7iSyDr0pkRECqYsyeeEQKDH2OO9H/A="; + types-aiobotocore-medical-imaging = buildTypesAiobotocorePackage "medical-imaging" "2.6.0" "sha256-zUXGqquEveHHDqA8XeJX++Yc42rnyW9Vzt5A7LOImfk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9d521c770ae9..a7e8c4ac90c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14581,6 +14581,8 @@ self: super: with self; { types-aiobotocore-mediatailor + types-aiobotocore-medical-imaging + types-aiobotocore-xray ; From 6b7e24f952590f3418628cb51122eeb72b78af1e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:39 -0700 Subject: [PATCH 226/420] python3Packages.types-aiobotocore-memorydb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 79fc6ff99b90..958b96dcd073 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -482,5 +482,7 @@ rec { types-aiobotocore-medical-imaging = buildTypesAiobotocorePackage "medical-imaging" "2.6.0" "sha256-zUXGqquEveHHDqA8XeJX++Yc42rnyW9Vzt5A7LOImfk="; + types-aiobotocore-memorydb = buildTypesAiobotocorePackage "memorydb" "2.6.0" "sha256-FJ9aeZRCY+bhot3cU3qX4EuFAowPCc7kT2D0FGVTpys="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a7e8c4ac90c4..474c2a4e0c02 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14583,6 +14583,8 @@ self: super: with self; { types-aiobotocore-medical-imaging + types-aiobotocore-memorydb + types-aiobotocore-xray ; From 8e4fb4f15ebf1c4544987f33a331a9e3ffc1abd7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:44 -0700 Subject: [PATCH 227/420] python3Packages.types-aiobotocore-meteringmarketplace: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 958b96dcd073..8535e7eeaaee 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -484,5 +484,7 @@ rec { types-aiobotocore-memorydb = buildTypesAiobotocorePackage "memorydb" "2.6.0" "sha256-FJ9aeZRCY+bhot3cU3qX4EuFAowPCc7kT2D0FGVTpys="; + types-aiobotocore-meteringmarketplace = buildTypesAiobotocorePackage "meteringmarketplace" "2.6.0" "sha256-WsWw1y5XueMQnRTWYQP73GawsSzEsliPzu9Xlij3UAo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 474c2a4e0c02..64fbc77305bd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14585,6 +14585,8 @@ self: super: with self; { types-aiobotocore-memorydb + types-aiobotocore-meteringmarketplace + types-aiobotocore-xray ; From 2ec671c33a0765eb136cf6da2c68145e366cbbd0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:48 -0700 Subject: [PATCH 228/420] python3Packages.types-aiobotocore-mgh: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8535e7eeaaee..19a73a956dac 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -486,5 +486,7 @@ rec { types-aiobotocore-meteringmarketplace = buildTypesAiobotocorePackage "meteringmarketplace" "2.6.0" "sha256-WsWw1y5XueMQnRTWYQP73GawsSzEsliPzu9Xlij3UAo="; + types-aiobotocore-mgh = buildTypesAiobotocorePackage "mgh" "2.6.0" "sha256-7wvX7X/NdB+GlWDogT2benTSC7ZCdVv97Zi6r+s5B2E="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 64fbc77305bd..e625a0931824 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14587,6 +14587,8 @@ self: super: with self; { types-aiobotocore-meteringmarketplace + types-aiobotocore-mgh + types-aiobotocore-xray ; From f5f65a56c981b6aa36356954b79e4b309e44e924 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:53 -0700 Subject: [PATCH 229/420] python3Packages.types-aiobotocore-mgn: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 19a73a956dac..13292b950db3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -488,5 +488,7 @@ rec { types-aiobotocore-mgh = buildTypesAiobotocorePackage "mgh" "2.6.0" "sha256-7wvX7X/NdB+GlWDogT2benTSC7ZCdVv97Zi6r+s5B2E="; + types-aiobotocore-mgn = buildTypesAiobotocorePackage "mgn" "2.6.0" "sha256-e6TTldFkZXf8A8bV7RKkIl6AD/lCC9elB6mT3WeWEiM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e625a0931824..742610fc788c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14589,6 +14589,8 @@ self: super: with self; { types-aiobotocore-mgh + types-aiobotocore-mgn + types-aiobotocore-xray ; From e07e48a63bff59caf7a4a8aff8c1c9aac85bcea0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:08:57 -0700 Subject: [PATCH 230/420] python3Packages.types-aiobotocore-migration-hub-refactor-spaces: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 13292b950db3..a4d36ac06cca 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -490,5 +490,7 @@ rec { types-aiobotocore-mgn = buildTypesAiobotocorePackage "mgn" "2.6.0" "sha256-e6TTldFkZXf8A8bV7RKkIl6AD/lCC9elB6mT3WeWEiM="; + types-aiobotocore-migration-hub-refactor-spaces = buildTypesAiobotocorePackage "migration-hub-refactor-spaces" "2.6.0" "sha256-HVoia2UZMrjgH6aUQGit+MueUk0qW3KjWKYJy2pHlp0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 742610fc788c..184f26a19a48 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14591,6 +14591,8 @@ self: super: with self; { types-aiobotocore-mgn + types-aiobotocore-migration-hub-refactor-spaces + types-aiobotocore-xray ; From 1a398172fa61722b6652abcc82f28e5cc53f2e07 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:02 -0700 Subject: [PATCH 231/420] python3Packages.types-aiobotocore-migrationhub-config: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a4d36ac06cca..14a7e9eea1dc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -492,5 +492,7 @@ rec { types-aiobotocore-migration-hub-refactor-spaces = buildTypesAiobotocorePackage "migration-hub-refactor-spaces" "2.6.0" "sha256-HVoia2UZMrjgH6aUQGit+MueUk0qW3KjWKYJy2pHlp0="; + types-aiobotocore-migrationhub-config = buildTypesAiobotocorePackage "migrationhub-config" "2.6.0" "sha256-hXju28oSNGlQ0qCwFD+qoyWFpKMbFkGWEXteOVOKiII="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 184f26a19a48..398287c411d7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14593,6 +14593,8 @@ self: super: with self; { types-aiobotocore-migration-hub-refactor-spaces + types-aiobotocore-migrationhub-config + types-aiobotocore-xray ; From 29492a597af165f56044a742a6af965ef33d25e4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:07 -0700 Subject: [PATCH 232/420] python3Packages.types-aiobotocore-migrationhuborchestrator: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 14a7e9eea1dc..fa8219f0117b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -494,5 +494,7 @@ rec { types-aiobotocore-migrationhub-config = buildTypesAiobotocorePackage "migrationhub-config" "2.6.0" "sha256-hXju28oSNGlQ0qCwFD+qoyWFpKMbFkGWEXteOVOKiII="; + types-aiobotocore-migrationhuborchestrator = buildTypesAiobotocorePackage "migrationhuborchestrator" "2.6.0" "sha256-mo4vH/xsbRf1UViSRu4P2YzI+7LFkkzXsHeZZLdXg+U="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 398287c411d7..148e0a99bd8e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14595,6 +14595,8 @@ self: super: with self; { types-aiobotocore-migrationhub-config + types-aiobotocore-migrationhuborchestrator + types-aiobotocore-xray ; From 7a0f88af250f7994c528b7f68ec2e1941f52ecfe Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:11 -0700 Subject: [PATCH 233/420] python3Packages.types-aiobotocore-migrationhubstrategy: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fa8219f0117b..5ec951252cce 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -496,5 +496,7 @@ rec { types-aiobotocore-migrationhuborchestrator = buildTypesAiobotocorePackage "migrationhuborchestrator" "2.6.0" "sha256-mo4vH/xsbRf1UViSRu4P2YzI+7LFkkzXsHeZZLdXg+U="; + types-aiobotocore-migrationhubstrategy = buildTypesAiobotocorePackage "migrationhubstrategy" "2.6.0" "sha256-eU4j+9z++Kgp2TaUX214XGuIXPxCriKu9w+XW8mZp+c="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 148e0a99bd8e..a9ef32c204a4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14597,6 +14597,8 @@ self: super: with self; { types-aiobotocore-migrationhuborchestrator + types-aiobotocore-migrationhubstrategy + types-aiobotocore-xray ; From 38ae2abf4ae14d89a047f59c822b8794c1d7ae3c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:16 -0700 Subject: [PATCH 234/420] python3Packages.types-aiobotocore-mobile: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5ec951252cce..61b3a5423b97 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -498,5 +498,7 @@ rec { types-aiobotocore-migrationhubstrategy = buildTypesAiobotocorePackage "migrationhubstrategy" "2.6.0" "sha256-eU4j+9z++Kgp2TaUX214XGuIXPxCriKu9w+XW8mZp+c="; + types-aiobotocore-mobile = buildTypesAiobotocorePackage "mobile" "2.6.0" "sha256-HKolI0fcGWye3Xow73qXOJRQ/Wb23ZXWLYyfA94zZT0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a9ef32c204a4..b810a678e459 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14599,6 +14599,8 @@ self: super: with self; { types-aiobotocore-migrationhubstrategy + types-aiobotocore-mobile + types-aiobotocore-xray ; From 38da63ad93b890d46e4cd348181af35be682ffa7 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:20 -0700 Subject: [PATCH 235/420] python3Packages.types-aiobotocore-mq: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 61b3a5423b97..85ae1dd0f13c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -500,5 +500,7 @@ rec { types-aiobotocore-mobile = buildTypesAiobotocorePackage "mobile" "2.6.0" "sha256-HKolI0fcGWye3Xow73qXOJRQ/Wb23ZXWLYyfA94zZT0="; + types-aiobotocore-mq = buildTypesAiobotocorePackage "mq" "2.6.0" "sha256-61iFbkOYLF6y1QUGePVAVEFqGgTmPbLYS7VDbvzmInA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b810a678e459..eaa4628675d7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14601,6 +14601,8 @@ self: super: with self; { types-aiobotocore-mobile + types-aiobotocore-mq + types-aiobotocore-xray ; From fe68c61d6e66035908f4440da4654456958d42fc Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:24 -0700 Subject: [PATCH 236/420] python3Packages.types-aiobotocore-mturk: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 85ae1dd0f13c..fc6725f56040 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -502,5 +502,7 @@ rec { types-aiobotocore-mq = buildTypesAiobotocorePackage "mq" "2.6.0" "sha256-61iFbkOYLF6y1QUGePVAVEFqGgTmPbLYS7VDbvzmInA="; + types-aiobotocore-mturk = buildTypesAiobotocorePackage "mturk" "2.6.0" "sha256-pdRp9XjLVLCHeMSMV+NycKNt9kbH93/ZJKbiwNlb+A4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eaa4628675d7..8d1f42a528cc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14603,6 +14603,8 @@ self: super: with self; { types-aiobotocore-mq + types-aiobotocore-mturk + types-aiobotocore-xray ; From 88283383793bea9ae92eaa0439e0486734faa3ee Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:29 -0700 Subject: [PATCH 237/420] python3Packages.types-aiobotocore-mwaa: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fc6725f56040..32d0b0af3f0f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -504,5 +504,7 @@ rec { types-aiobotocore-mturk = buildTypesAiobotocorePackage "mturk" "2.6.0" "sha256-pdRp9XjLVLCHeMSMV+NycKNt9kbH93/ZJKbiwNlb+A4="; + types-aiobotocore-mwaa = buildTypesAiobotocorePackage "mwaa" "2.6.0" "sha256-3/LXxvsVmKHpZPr1BISTndLFPmF3LF75kihknSt2cMk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8d1f42a528cc..ae514fa63ebc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14605,6 +14605,8 @@ self: super: with self; { types-aiobotocore-mturk + types-aiobotocore-mwaa + types-aiobotocore-xray ; From 1ef8d3f3bbb35df00dc80927092544b0f9357094 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:33 -0700 Subject: [PATCH 238/420] python3Packages.types-aiobotocore-neptune: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 32d0b0af3f0f..cd479ae85d05 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -506,5 +506,7 @@ rec { types-aiobotocore-mwaa = buildTypesAiobotocorePackage "mwaa" "2.6.0" "sha256-3/LXxvsVmKHpZPr1BISTndLFPmF3LF75kihknSt2cMk="; + types-aiobotocore-neptune = buildTypesAiobotocorePackage "neptune" "2.6.0" "sha256-2EIBP4NhRy+/OeFuPP/SIf1q6BhlKU9CFH7AM+y3558="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ae514fa63ebc..6b395337bf35 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14607,6 +14607,8 @@ self: super: with self; { types-aiobotocore-mwaa + types-aiobotocore-neptune + types-aiobotocore-xray ; From e439022baa8651d26d26638aa44ece870a50259a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:38 -0700 Subject: [PATCH 239/420] python3Packages.types-aiobotocore-network-firewall: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index cd479ae85d05..3c8f27ae68ce 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -508,5 +508,7 @@ rec { types-aiobotocore-neptune = buildTypesAiobotocorePackage "neptune" "2.6.0" "sha256-2EIBP4NhRy+/OeFuPP/SIf1q6BhlKU9CFH7AM+y3558="; + types-aiobotocore-network-firewall = buildTypesAiobotocorePackage "network-firewall" "2.6.0" "sha256-3bVNQSzaMhkpiN1mhS9Lz2EfeEJpkSIcPCKPC6s02Uo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6b395337bf35..66dc5a9c7bb3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14609,6 +14609,8 @@ self: super: with self; { types-aiobotocore-neptune + types-aiobotocore-network-firewall + types-aiobotocore-xray ; From ed4e8d24c9b5cd7280c30bff0a7ba635898300af Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:42 -0700 Subject: [PATCH 240/420] python3Packages.types-aiobotocore-networkmanager: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3c8f27ae68ce..8ce430d8728c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -510,5 +510,7 @@ rec { types-aiobotocore-network-firewall = buildTypesAiobotocorePackage "network-firewall" "2.6.0" "sha256-3bVNQSzaMhkpiN1mhS9Lz2EfeEJpkSIcPCKPC6s02Uo="; + types-aiobotocore-networkmanager = buildTypesAiobotocorePackage "networkmanager" "2.6.0" "sha256-Pwmgi4ybpOtLWlY62+QcBHT0iF/6B4Hxbv4CQPA+7/o="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 66dc5a9c7bb3..ea6b6783870e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14611,6 +14611,8 @@ self: super: with self; { types-aiobotocore-network-firewall + types-aiobotocore-networkmanager + types-aiobotocore-xray ; From 25d0134efa22b8280886a8b8c2e22bbd9ed3dd21 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:46 -0700 Subject: [PATCH 241/420] python3Packages.types-aiobotocore-nimble: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 8ce430d8728c..7f02f0bda75f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -512,5 +512,7 @@ rec { types-aiobotocore-networkmanager = buildTypesAiobotocorePackage "networkmanager" "2.6.0" "sha256-Pwmgi4ybpOtLWlY62+QcBHT0iF/6B4Hxbv4CQPA+7/o="; + types-aiobotocore-nimble = buildTypesAiobotocorePackage "nimble" "2.6.0" "sha256-x+wmTG6jeK8KpSDdhOZkbkRZ7ai7N4xaU4cEmHhO5xA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea6b6783870e..92182474bfcf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14613,6 +14613,8 @@ self: super: with self; { types-aiobotocore-networkmanager + types-aiobotocore-nimble + types-aiobotocore-xray ; From 02e4ee68a1cce9d30d27ed32d5c2d002cfe8d9a3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:50 -0700 Subject: [PATCH 242/420] python3Packages.types-aiobotocore-oam: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7f02f0bda75f..889473df14c7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -514,5 +514,7 @@ rec { types-aiobotocore-nimble = buildTypesAiobotocorePackage "nimble" "2.6.0" "sha256-x+wmTG6jeK8KpSDdhOZkbkRZ7ai7N4xaU4cEmHhO5xA="; + types-aiobotocore-oam = buildTypesAiobotocorePackage "oam" "2.6.0" "sha256-Q/msYeaXs9MxXj6X0p8Gw08/Y4FvvV2xAbEXU6iqi2g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 92182474bfcf..2f2e75aabfa5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14615,6 +14615,8 @@ self: super: with self; { types-aiobotocore-nimble + types-aiobotocore-oam + types-aiobotocore-xray ; From 596de5e666b1a28db1d3e40ecee2b4f09340fae0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:54 -0700 Subject: [PATCH 243/420] python3Packages.types-aiobotocore-omics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 889473df14c7..e0ef42f22718 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -516,5 +516,7 @@ rec { types-aiobotocore-oam = buildTypesAiobotocorePackage "oam" "2.6.0" "sha256-Q/msYeaXs9MxXj6X0p8Gw08/Y4FvvV2xAbEXU6iqi2g="; + types-aiobotocore-omics = buildTypesAiobotocorePackage "omics" "2.6.0" "sha256-UB0y0l2fb58yNJr36WpCeTDETAcdQkYd2ueETFEQSTo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2f2e75aabfa5..23efa9910ea8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14617,6 +14617,8 @@ self: super: with self; { types-aiobotocore-oam + types-aiobotocore-omics + types-aiobotocore-xray ; From cc002d74e4e3bddddff76017cbb825341d21aa7b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:09:59 -0700 Subject: [PATCH 244/420] python3Packages.types-aiobotocore-opensearch: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e0ef42f22718..bf11f5c460c3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -518,5 +518,7 @@ rec { types-aiobotocore-omics = buildTypesAiobotocorePackage "omics" "2.6.0" "sha256-UB0y0l2fb58yNJr36WpCeTDETAcdQkYd2ueETFEQSTo="; + types-aiobotocore-opensearch = buildTypesAiobotocorePackage "opensearch" "2.6.0" "sha256-ynRq7qRVNgpsP4lp6pbZqTv3zrF5Zu1v+STvv/yPgKw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23efa9910ea8..1688a4188f89 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14619,6 +14619,8 @@ self: super: with self; { types-aiobotocore-omics + types-aiobotocore-opensearch + types-aiobotocore-xray ; From f2a94919c8572931e758cd5d529bb1dd4169652d Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:03 -0700 Subject: [PATCH 245/420] python3Packages.types-aiobotocore-opensearchserverless: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bf11f5c460c3..5ed224b93e31 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -520,5 +520,7 @@ rec { types-aiobotocore-opensearch = buildTypesAiobotocorePackage "opensearch" "2.6.0" "sha256-ynRq7qRVNgpsP4lp6pbZqTv3zrF5Zu1v+STvv/yPgKw="; + types-aiobotocore-opensearchserverless = buildTypesAiobotocorePackage "opensearchserverless" "2.6.0" "sha256-M2tvTKjIg8aEP3KZvrMTCgiJqb6oWL9T5ylkj+Fr184="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1688a4188f89..331531c81f18 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14621,6 +14621,8 @@ self: super: with self; { types-aiobotocore-opensearch + types-aiobotocore-opensearchserverless + types-aiobotocore-xray ; From 99812545b161ab2fdf4aad32e5f808a3cdcdf442 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:07 -0700 Subject: [PATCH 246/420] python3Packages.types-aiobotocore-opsworks: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5ed224b93e31..08c8087dbd85 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -522,5 +522,7 @@ rec { types-aiobotocore-opensearchserverless = buildTypesAiobotocorePackage "opensearchserverless" "2.6.0" "sha256-M2tvTKjIg8aEP3KZvrMTCgiJqb6oWL9T5ylkj+Fr184="; + types-aiobotocore-opsworks = buildTypesAiobotocorePackage "opsworks" "2.6.0" "sha256-XY9DqNQUjFaumcOd2dvX/kV2sWt67Ni26H5SzCarr2E="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 331531c81f18..a81defdf19d6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14623,6 +14623,8 @@ self: super: with self; { types-aiobotocore-opensearchserverless + types-aiobotocore-opsworks + types-aiobotocore-xray ; From 44d8bc959047983b98cad0cd2bfad9a54a004577 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:11 -0700 Subject: [PATCH 247/420] python3Packages.types-aiobotocore-opsworkscm: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 08c8087dbd85..940453c6b834 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -524,5 +524,7 @@ rec { types-aiobotocore-opsworks = buildTypesAiobotocorePackage "opsworks" "2.6.0" "sha256-XY9DqNQUjFaumcOd2dvX/kV2sWt67Ni26H5SzCarr2E="; + types-aiobotocore-opsworkscm = buildTypesAiobotocorePackage "opsworkscm" "2.6.0" "sha256-k1QO54TXJJG5jAvPcoEyZEdEXSmLzHdSPDyF60Zmf78="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a81defdf19d6..4715f40a4d13 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14625,6 +14625,8 @@ self: super: with self; { types-aiobotocore-opsworks + types-aiobotocore-opsworkscm + types-aiobotocore-xray ; From c0119d6141ca20cfcc2e01344303f83771feb43a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:15 -0700 Subject: [PATCH 248/420] python3Packages.types-aiobotocore-organizations: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 940453c6b834..830468af7a3c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -526,5 +526,7 @@ rec { types-aiobotocore-opsworkscm = buildTypesAiobotocorePackage "opsworkscm" "2.6.0" "sha256-k1QO54TXJJG5jAvPcoEyZEdEXSmLzHdSPDyF60Zmf78="; + types-aiobotocore-organizations = buildTypesAiobotocorePackage "organizations" "2.6.0" "sha256-kDxDdLaWlaNLfSCOc5Kho73cbk33FnK9c12PYKhdbFQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4715f40a4d13..3cc72bc913f4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14627,6 +14627,8 @@ self: super: with self; { types-aiobotocore-opsworkscm + types-aiobotocore-organizations + types-aiobotocore-xray ; From 0b6f99432fa321ed250d31d6cec201f86cf24b5e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:20 -0700 Subject: [PATCH 249/420] python3Packages.types-aiobotocore-osis: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 830468af7a3c..370d1b012def 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -528,5 +528,7 @@ rec { types-aiobotocore-organizations = buildTypesAiobotocorePackage "organizations" "2.6.0" "sha256-kDxDdLaWlaNLfSCOc5Kho73cbk33FnK9c12PYKhdbFQ="; + types-aiobotocore-osis = buildTypesAiobotocorePackage "osis" "2.6.0" "sha256-Q8EIdCvT0Zjj9udUNpWZzgNClVjNBWTW3V7emhdf+yg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3cc72bc913f4..f888c4f07683 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14629,6 +14629,8 @@ self: super: with self; { types-aiobotocore-organizations + types-aiobotocore-osis + types-aiobotocore-xray ; From 97fabff2ee3b14d707ed9f05ff386f3a0e212d54 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:24 -0700 Subject: [PATCH 250/420] python3Packages.types-aiobotocore-outposts: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 370d1b012def..6c9b1c781832 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -530,5 +530,7 @@ rec { types-aiobotocore-osis = buildTypesAiobotocorePackage "osis" "2.6.0" "sha256-Q8EIdCvT0Zjj9udUNpWZzgNClVjNBWTW3V7emhdf+yg="; + types-aiobotocore-outposts = buildTypesAiobotocorePackage "outposts" "2.6.0" "sha256-tXAQ+tNeZUF1snrB+76Ku+j1Wdslah38s0YMBOINrlo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f888c4f07683..fc3e39223276 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14631,6 +14631,8 @@ self: super: with self; { types-aiobotocore-osis + types-aiobotocore-outposts + types-aiobotocore-xray ; From a104cdef2467b95da2805b8e0c99d9a26f7df178 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:28 -0700 Subject: [PATCH 251/420] python3Packages.types-aiobotocore-panorama: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6c9b1c781832..30562b262871 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -532,5 +532,7 @@ rec { types-aiobotocore-outposts = buildTypesAiobotocorePackage "outposts" "2.6.0" "sha256-tXAQ+tNeZUF1snrB+76Ku+j1Wdslah38s0YMBOINrlo="; + types-aiobotocore-panorama = buildTypesAiobotocorePackage "panorama" "2.6.0" "sha256-/XJsZV5Yhp5BMSheF9zVf+MSJsH2zUrpnrkSwo+4PfI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fc3e39223276..f52e73228ec4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14633,6 +14633,8 @@ self: super: with self; { types-aiobotocore-outposts + types-aiobotocore-panorama + types-aiobotocore-xray ; From 89e40b0259ca0d46c93fc111842caac238788a65 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:32 -0700 Subject: [PATCH 252/420] python3Packages.types-aiobotocore-payment-cryptography: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 30562b262871..051483c8050a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -534,5 +534,7 @@ rec { types-aiobotocore-panorama = buildTypesAiobotocorePackage "panorama" "2.6.0" "sha256-/XJsZV5Yhp5BMSheF9zVf+MSJsH2zUrpnrkSwo+4PfI="; + types-aiobotocore-payment-cryptography = buildTypesAiobotocorePackage "payment-cryptography" "2.6.0" "sha256-x6uUO578BIDl1kFdyKXSPnegKLAX3FG4U5rDjsQpVQQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f52e73228ec4..4472220c8278 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14635,6 +14635,8 @@ self: super: with self; { types-aiobotocore-panorama + types-aiobotocore-payment-cryptography + types-aiobotocore-xray ; From 2eca59478c41939ba049c60829a89a8219c67d87 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:37 -0700 Subject: [PATCH 253/420] python3Packages.types-aiobotocore-payment-cryptography-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 051483c8050a..90aa0e1d5d43 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -536,5 +536,7 @@ rec { types-aiobotocore-payment-cryptography = buildTypesAiobotocorePackage "payment-cryptography" "2.6.0" "sha256-x6uUO578BIDl1kFdyKXSPnegKLAX3FG4U5rDjsQpVQQ="; + types-aiobotocore-payment-cryptography-data = buildTypesAiobotocorePackage "payment-cryptography-data" "2.6.0" "sha256-+eHgcPA+egPBR06Mddw0RXuivpiprPMnBhPfCmh0sS4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4472220c8278..cfaedc3342a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14637,6 +14637,8 @@ self: super: with self; { types-aiobotocore-payment-cryptography + types-aiobotocore-payment-cryptography-data + types-aiobotocore-xray ; From 006e5c5e1b9259d357b374e7df8680cda5ddf15a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:41 -0700 Subject: [PATCH 254/420] python3Packages.types-aiobotocore-personalize: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 90aa0e1d5d43..6547d7496b3b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -538,5 +538,7 @@ rec { types-aiobotocore-payment-cryptography-data = buildTypesAiobotocorePackage "payment-cryptography-data" "2.6.0" "sha256-+eHgcPA+egPBR06Mddw0RXuivpiprPMnBhPfCmh0sS4="; + types-aiobotocore-personalize = buildTypesAiobotocorePackage "personalize" "2.6.0" "sha256-5s0KmOdQyPtcFtb+XkR/zHEiEdZcDwZwldwUy+dvC4s="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cfaedc3342a8..a332e23d0687 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14639,6 +14639,8 @@ self: super: with self; { types-aiobotocore-payment-cryptography-data + types-aiobotocore-personalize + types-aiobotocore-xray ; From c0f14622978e7004721de950303e9cacddebd967 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:45 -0700 Subject: [PATCH 255/420] python3Packages.types-aiobotocore-personalize-events: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6547d7496b3b..61e8c29a4753 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -540,5 +540,7 @@ rec { types-aiobotocore-personalize = buildTypesAiobotocorePackage "personalize" "2.6.0" "sha256-5s0KmOdQyPtcFtb+XkR/zHEiEdZcDwZwldwUy+dvC4s="; + types-aiobotocore-personalize-events = buildTypesAiobotocorePackage "personalize-events" "2.6.0" "sha256-+9wtXNgXQhACa8NYfcjbZcJj0j9PlOavxs+c4NXy0kE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a332e23d0687..a56f5a5eb2f2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14641,6 +14641,8 @@ self: super: with self; { types-aiobotocore-personalize + types-aiobotocore-personalize-events + types-aiobotocore-xray ; From 0d747f32f1252cd1dad0c836553d06c13862951e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:49 -0700 Subject: [PATCH 256/420] python3Packages.types-aiobotocore-personalize-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 61e8c29a4753..30ca946727d8 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -542,5 +542,7 @@ rec { types-aiobotocore-personalize-events = buildTypesAiobotocorePackage "personalize-events" "2.6.0" "sha256-+9wtXNgXQhACa8NYfcjbZcJj0j9PlOavxs+c4NXy0kE="; + types-aiobotocore-personalize-runtime = buildTypesAiobotocorePackage "personalize-runtime" "2.6.0" "sha256-tvLfXhaFpdivIBtFYp0G4/QihOMSGXK1nVDFKuMJCto="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a56f5a5eb2f2..6214b441eb32 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14643,6 +14643,8 @@ self: super: with self; { types-aiobotocore-personalize-events + types-aiobotocore-personalize-runtime + types-aiobotocore-xray ; From c15a9e7421d7632463b4600e90bcc44d00ec3965 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:53 -0700 Subject: [PATCH 257/420] python3Packages.types-aiobotocore-pi: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 30ca946727d8..53e8659be011 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -544,5 +544,7 @@ rec { types-aiobotocore-personalize-runtime = buildTypesAiobotocorePackage "personalize-runtime" "2.6.0" "sha256-tvLfXhaFpdivIBtFYp0G4/QihOMSGXK1nVDFKuMJCto="; + types-aiobotocore-pi = buildTypesAiobotocorePackage "pi" "2.6.0" "sha256-j0ngXkDGIhSh/b1RPn+NY6V2BAUZJdvuT18iALwRkAY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6214b441eb32..233b61f78609 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14645,6 +14645,8 @@ self: super: with self; { types-aiobotocore-personalize-runtime + types-aiobotocore-pi + types-aiobotocore-xray ; From 881b16a440dc560272e61914977dea1b0ceb6ac8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:10:57 -0700 Subject: [PATCH 258/420] python3Packages.types-aiobotocore-pinpoint: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 53e8659be011..6965eb4d9d9f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -546,5 +546,7 @@ rec { types-aiobotocore-pi = buildTypesAiobotocorePackage "pi" "2.6.0" "sha256-j0ngXkDGIhSh/b1RPn+NY6V2BAUZJdvuT18iALwRkAY="; + types-aiobotocore-pinpoint = buildTypesAiobotocorePackage "pinpoint" "2.6.0" "sha256-Txme0jlgoF9IYywdKqv71kcEqBfF1juTJcagi/2wQ20="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 233b61f78609..f923ffd62a11 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14647,6 +14647,8 @@ self: super: with self; { types-aiobotocore-pi + types-aiobotocore-pinpoint + types-aiobotocore-xray ; From 17d6413f2be97e1b1466d3747dd98c25e67430ff Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:02 -0700 Subject: [PATCH 259/420] python3Packages.types-aiobotocore-pinpoint-email: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6965eb4d9d9f..79d05ff747cf 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -548,5 +548,7 @@ rec { types-aiobotocore-pinpoint = buildTypesAiobotocorePackage "pinpoint" "2.6.0" "sha256-Txme0jlgoF9IYywdKqv71kcEqBfF1juTJcagi/2wQ20="; + types-aiobotocore-pinpoint-email = buildTypesAiobotocorePackage "pinpoint-email" "2.6.0" "sha256-c6tqmW7i5AXrH2PFyVPCpBkDaiMdTu2fmbHeuc3SzPg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f923ffd62a11..8f8e23152bcb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14649,6 +14649,8 @@ self: super: with self; { types-aiobotocore-pinpoint + types-aiobotocore-pinpoint-email + types-aiobotocore-xray ; From 7b4398a63752a39bcad72b8e3c3cab6f81f0a1f9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:06 -0700 Subject: [PATCH 260/420] python3Packages.types-aiobotocore-pinpoint-sms-voice: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 79d05ff747cf..9dfd5fbf0e0c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -550,5 +550,7 @@ rec { types-aiobotocore-pinpoint-email = buildTypesAiobotocorePackage "pinpoint-email" "2.6.0" "sha256-c6tqmW7i5AXrH2PFyVPCpBkDaiMdTu2fmbHeuc3SzPg="; + types-aiobotocore-pinpoint-sms-voice = buildTypesAiobotocorePackage "pinpoint-sms-voice" "2.6.0" "sha256-qvVYusxMw+ZrMJAKXqk1HzEDYHsvaUthnYMDF6b0xbQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8f8e23152bcb..fbec39cba526 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14651,6 +14651,8 @@ self: super: with self; { types-aiobotocore-pinpoint-email + types-aiobotocore-pinpoint-sms-voice + types-aiobotocore-xray ; From 69e0be21d79d94157538518a8fd2c60c4c66b8c3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:10 -0700 Subject: [PATCH 261/420] python3Packages.types-aiobotocore-pinpoint-sms-voice-v2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9dfd5fbf0e0c..690458f42770 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -552,5 +552,7 @@ rec { types-aiobotocore-pinpoint-sms-voice = buildTypesAiobotocorePackage "pinpoint-sms-voice" "2.6.0" "sha256-qvVYusxMw+ZrMJAKXqk1HzEDYHsvaUthnYMDF6b0xbQ="; + types-aiobotocore-pinpoint-sms-voice-v2 = buildTypesAiobotocorePackage "pinpoint-sms-voice-v2" "2.6.0" "sha256-ErqAFQYtKfsNABPm+KpOKm88Mh5MmXou6bqJfsqXdt0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fbec39cba526..b1d496ea009f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14653,6 +14653,8 @@ self: super: with self; { types-aiobotocore-pinpoint-sms-voice + types-aiobotocore-pinpoint-sms-voice-v2 + types-aiobotocore-xray ; From c613d914534de68c04e832cf52d3ea84e9dac6df Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:15 -0700 Subject: [PATCH 262/420] python3Packages.types-aiobotocore-pipes: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 690458f42770..0e778d63a9ad 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -554,5 +554,7 @@ rec { types-aiobotocore-pinpoint-sms-voice-v2 = buildTypesAiobotocorePackage "pinpoint-sms-voice-v2" "2.6.0" "sha256-ErqAFQYtKfsNABPm+KpOKm88Mh5MmXou6bqJfsqXdt0="; + types-aiobotocore-pipes = buildTypesAiobotocorePackage "pipes" "2.6.0" "sha256-vOszu7z/DiZwXrdqoiLUlpLQLNNuRbskI59BBippizI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b1d496ea009f..3b42cde7f889 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14655,6 +14655,8 @@ self: super: with self; { types-aiobotocore-pinpoint-sms-voice-v2 + types-aiobotocore-pipes + types-aiobotocore-xray ; From f6aa69c55c06c6fdde375e169b3216ca166daf1b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:19 -0700 Subject: [PATCH 263/420] python3Packages.types-aiobotocore-polly: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0e778d63a9ad..a48c578d96bf 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -556,5 +556,7 @@ rec { types-aiobotocore-pipes = buildTypesAiobotocorePackage "pipes" "2.6.0" "sha256-vOszu7z/DiZwXrdqoiLUlpLQLNNuRbskI59BBippizI="; + types-aiobotocore-polly = buildTypesAiobotocorePackage "polly" "2.6.0" "sha256-AKP23N3xMzdOti6J7vONDM/cwdqTHYkiM6c/njspSXI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3b42cde7f889..b9455e72b6e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14657,6 +14657,8 @@ self: super: with self; { types-aiobotocore-pipes + types-aiobotocore-polly + types-aiobotocore-xray ; From 6e58b879b7398795cbf77ef02c929a7c07e112b4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:23 -0700 Subject: [PATCH 264/420] python3Packages.types-aiobotocore-pricing: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a48c578d96bf..91b706086792 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -558,5 +558,7 @@ rec { types-aiobotocore-polly = buildTypesAiobotocorePackage "polly" "2.6.0" "sha256-AKP23N3xMzdOti6J7vONDM/cwdqTHYkiM6c/njspSXI="; + types-aiobotocore-pricing = buildTypesAiobotocorePackage "pricing" "2.6.0" "sha256-PccslOI6F2k50g03j22AYN3xtTsTW3ie4W4pEaT2XwY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b9455e72b6e6..59579349c01f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14659,6 +14659,8 @@ self: super: with self; { types-aiobotocore-polly + types-aiobotocore-pricing + types-aiobotocore-xray ; From 9f773a52811b24c4cab240fa226c08ace52638c0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:28 -0700 Subject: [PATCH 265/420] python3Packages.types-aiobotocore-privatenetworks: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 91b706086792..31667058c949 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -560,5 +560,7 @@ rec { types-aiobotocore-pricing = buildTypesAiobotocorePackage "pricing" "2.6.0" "sha256-PccslOI6F2k50g03j22AYN3xtTsTW3ie4W4pEaT2XwY="; + types-aiobotocore-privatenetworks = buildTypesAiobotocorePackage "privatenetworks" "2.6.0" "sha256-3e6/IA6QYgGhipt5XP/b4h3soko1tLntMieXOmeWjlI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 59579349c01f..79b42fb38d03 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14661,6 +14661,8 @@ self: super: with self; { types-aiobotocore-pricing + types-aiobotocore-privatenetworks + types-aiobotocore-xray ; From b3d774bdd98d435be5ec34c606529d1d1009693e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:32 -0700 Subject: [PATCH 266/420] python3Packages.types-aiobotocore-proton: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 31667058c949..23ba98254b63 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -562,5 +562,7 @@ rec { types-aiobotocore-privatenetworks = buildTypesAiobotocorePackage "privatenetworks" "2.6.0" "sha256-3e6/IA6QYgGhipt5XP/b4h3soko1tLntMieXOmeWjlI="; + types-aiobotocore-proton = buildTypesAiobotocorePackage "proton" "2.6.0" "sha256-rtJ+idGSdRVZafFNppQgIQUobKzClCKHf4RqlBtppBw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 79b42fb38d03..fe911255ba5c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14663,6 +14663,8 @@ self: super: with self; { types-aiobotocore-privatenetworks + types-aiobotocore-proton + types-aiobotocore-xray ; From 198dfc09b912b25de2763753a2471e712401b271 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:36 -0700 Subject: [PATCH 267/420] python3Packages.types-aiobotocore-qldb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 23ba98254b63..45ddc5ece6e4 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -564,5 +564,7 @@ rec { types-aiobotocore-proton = buildTypesAiobotocorePackage "proton" "2.6.0" "sha256-rtJ+idGSdRVZafFNppQgIQUobKzClCKHf4RqlBtppBw="; + types-aiobotocore-qldb = buildTypesAiobotocorePackage "qldb" "2.6.0" "sha256-AqV8yAUYTT8nc3jQkq0qDzZRKxewsrxIR/kVJiX3fwI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fe911255ba5c..d8e501453c9e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14665,6 +14665,8 @@ self: super: with self; { types-aiobotocore-proton + types-aiobotocore-qldb + types-aiobotocore-xray ; From efc64cf9d20f4b627edb087d95bf20733179af4f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:41 -0700 Subject: [PATCH 268/420] python3Packages.types-aiobotocore-qldb-session: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 45ddc5ece6e4..6d45db0eb12c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -566,5 +566,7 @@ rec { types-aiobotocore-qldb = buildTypesAiobotocorePackage "qldb" "2.6.0" "sha256-AqV8yAUYTT8nc3jQkq0qDzZRKxewsrxIR/kVJiX3fwI="; + types-aiobotocore-qldb-session = buildTypesAiobotocorePackage "qldb-session" "2.6.0" "sha256-N4YntFIEyhhryAaIFY8Gu4Uehw6D/VcTeIlBxx7ej4c="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d8e501453c9e..60914d64a672 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14667,6 +14667,8 @@ self: super: with self; { types-aiobotocore-qldb + types-aiobotocore-qldb-session + types-aiobotocore-xray ; From a376f42f1ebe1ce3fa35831f8dc96b1ee67c591b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:45 -0700 Subject: [PATCH 269/420] python3Packages.types-aiobotocore-quicksight: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 6d45db0eb12c..9cb42b33c2a9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -568,5 +568,7 @@ rec { types-aiobotocore-qldb-session = buildTypesAiobotocorePackage "qldb-session" "2.6.0" "sha256-N4YntFIEyhhryAaIFY8Gu4Uehw6D/VcTeIlBxx7ej4c="; + types-aiobotocore-quicksight = buildTypesAiobotocorePackage "quicksight" "2.6.0" "sha256-DOum/vx6URynxImQN9SRhAr5rFgZdSJMdtAMom5YHe8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 60914d64a672..d3eddf822444 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14669,6 +14669,8 @@ self: super: with self; { types-aiobotocore-qldb-session + types-aiobotocore-quicksight + types-aiobotocore-xray ; From bdc7ed3e70450984409185a2409b033817782c50 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:49 -0700 Subject: [PATCH 270/420] python3Packages.types-aiobotocore-ram: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9cb42b33c2a9..22cee1400833 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -570,5 +570,7 @@ rec { types-aiobotocore-quicksight = buildTypesAiobotocorePackage "quicksight" "2.6.0" "sha256-DOum/vx6URynxImQN9SRhAr5rFgZdSJMdtAMom5YHe8="; + types-aiobotocore-ram = buildTypesAiobotocorePackage "ram" "2.6.0" "sha256-pZ/h8/1njNNp9+nhpbU/VhGevrZkSrWnhWm3weHAxWQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d3eddf822444..e7c90a0c5e11 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14671,6 +14671,8 @@ self: super: with self; { types-aiobotocore-quicksight + types-aiobotocore-ram + types-aiobotocore-xray ; From f9f716045d88947d151ce29b8c305384ea720e9f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:53 -0700 Subject: [PATCH 271/420] python3Packages.types-aiobotocore-rbin: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 22cee1400833..5c66f1d99f99 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -572,5 +572,7 @@ rec { types-aiobotocore-ram = buildTypesAiobotocorePackage "ram" "2.6.0" "sha256-pZ/h8/1njNNp9+nhpbU/VhGevrZkSrWnhWm3weHAxWQ="; + types-aiobotocore-rbin = buildTypesAiobotocorePackage "rbin" "2.6.0" "sha256-TOI2FQdO71XT1NESXGrZN+UI6c7CGRmsBbp4ipuQwhg="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e7c90a0c5e11..6737e0d47edc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14673,6 +14673,8 @@ self: super: with self; { types-aiobotocore-ram + types-aiobotocore-rbin + types-aiobotocore-xray ; From 28da2f5e54389d33552c018799694c7fc932e041 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:11:58 -0700 Subject: [PATCH 272/420] python3Packages.types-aiobotocore-rds: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5c66f1d99f99..9b6bd823a5aa 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -574,5 +574,7 @@ rec { types-aiobotocore-rbin = buildTypesAiobotocorePackage "rbin" "2.6.0" "sha256-TOI2FQdO71XT1NESXGrZN+UI6c7CGRmsBbp4ipuQwhg="; + types-aiobotocore-rds = buildTypesAiobotocorePackage "rds" "2.6.0" "sha256-M0IDOMbqGdLl0WSipPirjDn3Fr4AQ06+j3m0Ci3jyBE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6737e0d47edc..499603119c04 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14675,6 +14675,8 @@ self: super: with self; { types-aiobotocore-rbin + types-aiobotocore-rds + types-aiobotocore-xray ; From b3d532d169cd308c955624270ae7cb79450563c9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:02 -0700 Subject: [PATCH 273/420] python3Packages.types-aiobotocore-rds-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9b6bd823a5aa..819bde4a36cb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -576,5 +576,7 @@ rec { types-aiobotocore-rds = buildTypesAiobotocorePackage "rds" "2.6.0" "sha256-M0IDOMbqGdLl0WSipPirjDn3Fr4AQ06+j3m0Ci3jyBE="; + types-aiobotocore-rds-data = buildTypesAiobotocorePackage "rds-data" "2.6.0" "sha256-GYddRqZeBP5f6chzZON9y59KcBiss9eWa8rVGo53C0g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 499603119c04..af75c41eba15 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14677,6 +14677,8 @@ self: super: with self; { types-aiobotocore-rds + types-aiobotocore-rds-data + types-aiobotocore-xray ; From 9598792eb514fddd0aeed43b8fde473716c5dee8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:06 -0700 Subject: [PATCH 274/420] python3Packages.types-aiobotocore-redshift: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 819bde4a36cb..efb5310fd4ab 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -578,5 +578,7 @@ rec { types-aiobotocore-rds-data = buildTypesAiobotocorePackage "rds-data" "2.6.0" "sha256-GYddRqZeBP5f6chzZON9y59KcBiss9eWa8rVGo53C0g="; + types-aiobotocore-redshift = buildTypesAiobotocorePackage "redshift" "2.6.0" "sha256-6znZQUxNKE7SB6G+9l4iQSP9hZt+plKFA8VkE1scxrU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index af75c41eba15..4cb163616cc5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14679,6 +14679,8 @@ self: super: with self; { types-aiobotocore-rds-data + types-aiobotocore-redshift + types-aiobotocore-xray ; From 3d02a3b3c1f69c51ebfe88f90ae322fbfd4d6402 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:11 -0700 Subject: [PATCH 275/420] python3Packages.types-aiobotocore-redshift-data: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index efb5310fd4ab..dfc0cd1d2091 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -580,5 +580,7 @@ rec { types-aiobotocore-redshift = buildTypesAiobotocorePackage "redshift" "2.6.0" "sha256-6znZQUxNKE7SB6G+9l4iQSP9hZt+plKFA8VkE1scxrU="; + types-aiobotocore-redshift-data = buildTypesAiobotocorePackage "redshift-data" "2.6.0" "sha256-FRJeBjA5dfnnZ586VShmPt0CBgi5+ZYbldOUZIGR2L0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4cb163616cc5..8ec222a92d21 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14681,6 +14681,8 @@ self: super: with self; { types-aiobotocore-redshift + types-aiobotocore-redshift-data + types-aiobotocore-xray ; From b908c7e1ae1547f9f91b9ecacb18c79e7b9d6fbd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:15 -0700 Subject: [PATCH 276/420] python3Packages.types-aiobotocore-redshift-serverless: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index dfc0cd1d2091..c650861d885d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -582,5 +582,7 @@ rec { types-aiobotocore-redshift-data = buildTypesAiobotocorePackage "redshift-data" "2.6.0" "sha256-FRJeBjA5dfnnZ586VShmPt0CBgi5+ZYbldOUZIGR2L0="; + types-aiobotocore-redshift-serverless = buildTypesAiobotocorePackage "redshift-serverless" "2.6.0" "sha256-lMNUId8z4h/m0FmusvEjYoQj+PUSLaiOREd27vF3qxI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8ec222a92d21..7be6be633051 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14683,6 +14683,8 @@ self: super: with self; { types-aiobotocore-redshift-data + types-aiobotocore-redshift-serverless + types-aiobotocore-xray ; From cb63481dfa33cacb5f611a268d203acfc34b7fcd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:20 -0700 Subject: [PATCH 277/420] python3Packages.types-aiobotocore-rekognition: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c650861d885d..f3b58f2d8ca7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -584,5 +584,7 @@ rec { types-aiobotocore-redshift-serverless = buildTypesAiobotocorePackage "redshift-serverless" "2.6.0" "sha256-lMNUId8z4h/m0FmusvEjYoQj+PUSLaiOREd27vF3qxI="; + types-aiobotocore-rekognition = buildTypesAiobotocorePackage "rekognition" "2.6.0" "sha256-8luG3yWj82hmMq5KYjNG58pbiDBMk+D6ykgzqE752T8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7be6be633051..a2f732cf087a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14685,6 +14685,8 @@ self: super: with self; { types-aiobotocore-redshift-serverless + types-aiobotocore-rekognition + types-aiobotocore-xray ; From 0f28c81bf0f0e5d2b5a9df0a2c33e5f19c6cee89 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:24 -0700 Subject: [PATCH 278/420] python3Packages.types-aiobotocore-resiliencehub: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f3b58f2d8ca7..05fa09fe092f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -586,5 +586,7 @@ rec { types-aiobotocore-rekognition = buildTypesAiobotocorePackage "rekognition" "2.6.0" "sha256-8luG3yWj82hmMq5KYjNG58pbiDBMk+D6ykgzqE752T8="; + types-aiobotocore-resiliencehub = buildTypesAiobotocorePackage "resiliencehub" "2.6.0" "sha256-nXZ7ZrpEOSdXdcuGVMNI7hjx6oisnnej18vALIEEzGQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a2f732cf087a..a737e820116e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14687,6 +14687,8 @@ self: super: with self; { types-aiobotocore-rekognition + types-aiobotocore-resiliencehub + types-aiobotocore-xray ; From c90988a29ea23aa9b4b69dfd791107af084ce36b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:29 -0700 Subject: [PATCH 279/420] python3Packages.types-aiobotocore-resource-explorer-2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 05fa09fe092f..b5adb40ccb9f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -588,5 +588,7 @@ rec { types-aiobotocore-resiliencehub = buildTypesAiobotocorePackage "resiliencehub" "2.6.0" "sha256-nXZ7ZrpEOSdXdcuGVMNI7hjx6oisnnej18vALIEEzGQ="; + types-aiobotocore-resource-explorer-2 = buildTypesAiobotocorePackage "resource-explorer-2" "2.6.0" "sha256-cjBd3Ns1ckr7DT9gpaeb8CbXOrmwU3gENN5Is5BwrZI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a737e820116e..edda20e51376 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14689,6 +14689,8 @@ self: super: with self; { types-aiobotocore-resiliencehub + types-aiobotocore-resource-explorer-2 + types-aiobotocore-xray ; From 41587f2332ec7f24ddb8010870ab3f5523c67edd Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:33 -0700 Subject: [PATCH 280/420] python3Packages.types-aiobotocore-resource-groups: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b5adb40ccb9f..2c5b328c3a73 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -590,5 +590,7 @@ rec { types-aiobotocore-resource-explorer-2 = buildTypesAiobotocorePackage "resource-explorer-2" "2.6.0" "sha256-cjBd3Ns1ckr7DT9gpaeb8CbXOrmwU3gENN5Is5BwrZI="; + types-aiobotocore-resource-groups = buildTypesAiobotocorePackage "resource-groups" "2.6.0" "sha256-GcbI21WVdMmwMcpbBkma4VrLsLVRP24/Uk43+4vE864="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index edda20e51376..1e2220cccd1c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14691,6 +14691,8 @@ self: super: with self; { types-aiobotocore-resource-explorer-2 + types-aiobotocore-resource-groups + types-aiobotocore-xray ; From 78ac6b01b2bff14734b022aacdba6aa73087a8d0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:37 -0700 Subject: [PATCH 281/420] python3Packages.types-aiobotocore-resourcegroupstaggingapi: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 2c5b328c3a73..594542e9c827 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -592,5 +592,7 @@ rec { types-aiobotocore-resource-groups = buildTypesAiobotocorePackage "resource-groups" "2.6.0" "sha256-GcbI21WVdMmwMcpbBkma4VrLsLVRP24/Uk43+4vE864="; + types-aiobotocore-resourcegroupstaggingapi = buildTypesAiobotocorePackage "resourcegroupstaggingapi" "2.6.0" "sha256-pW8/wn2Qk1jf1d2kYZ84yEaNUcl6xgHw+yuT0bHnsBE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1e2220cccd1c..1417f64ceb38 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14693,6 +14693,8 @@ self: super: with self; { types-aiobotocore-resource-groups + types-aiobotocore-resourcegroupstaggingapi + types-aiobotocore-xray ; From 8ad803c0a8d394777ef4d2dccc87f6e458b11022 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:41 -0700 Subject: [PATCH 282/420] python3Packages.types-aiobotocore-robomaker: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 594542e9c827..5affe6e09ca2 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -594,5 +594,7 @@ rec { types-aiobotocore-resourcegroupstaggingapi = buildTypesAiobotocorePackage "resourcegroupstaggingapi" "2.6.0" "sha256-pW8/wn2Qk1jf1d2kYZ84yEaNUcl6xgHw+yuT0bHnsBE="; + types-aiobotocore-robomaker = buildTypesAiobotocorePackage "robomaker" "2.6.0" "sha256-aKO/fGT4UANiYkZOUuOQ4ungKpW8p+yAT5+42WHgp3M="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1417f64ceb38..d93d6f92a5cf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14695,6 +14695,8 @@ self: super: with self; { types-aiobotocore-resourcegroupstaggingapi + types-aiobotocore-robomaker + types-aiobotocore-xray ; From 5db1ee42835d6058d90df7f800a584afd7330d48 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:45 -0700 Subject: [PATCH 283/420] python3Packages.types-aiobotocore-rolesanywhere: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5affe6e09ca2..645731ad17b9 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -596,5 +596,7 @@ rec { types-aiobotocore-robomaker = buildTypesAiobotocorePackage "robomaker" "2.6.0" "sha256-aKO/fGT4UANiYkZOUuOQ4ungKpW8p+yAT5+42WHgp3M="; + types-aiobotocore-rolesanywhere = buildTypesAiobotocorePackage "rolesanywhere" "2.6.0" "sha256-jTAe8nMwbXwb+1uf9ITVIKtKyOLIwFH6yi+2IYYVIyU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d93d6f92a5cf..a750243e9652 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14697,6 +14697,8 @@ self: super: with self; { types-aiobotocore-robomaker + types-aiobotocore-rolesanywhere + types-aiobotocore-xray ; From f4eb46e10933583ea979ec57c26815fda589fd6a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:50 -0700 Subject: [PATCH 284/420] python3Packages.types-aiobotocore-route53: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 645731ad17b9..34d471259287 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -598,5 +598,7 @@ rec { types-aiobotocore-rolesanywhere = buildTypesAiobotocorePackage "rolesanywhere" "2.6.0" "sha256-jTAe8nMwbXwb+1uf9ITVIKtKyOLIwFH6yi+2IYYVIyU="; + types-aiobotocore-route53 = buildTypesAiobotocorePackage "route53" "2.6.0" "sha256-RMIrcFD+1RbA3AcRw3TSjENBzmHQL1zHX7FoOFA+UP0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a750243e9652..5bf63be49596 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14699,6 +14699,8 @@ self: super: with self; { types-aiobotocore-rolesanywhere + types-aiobotocore-route53 + types-aiobotocore-xray ; From 1f3957b4f88051fea13673ac47292c2de2d8a3f4 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:54 -0700 Subject: [PATCH 285/420] python3Packages.types-aiobotocore-route53-recovery-cluster: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 34d471259287..4c368ee9cdaa 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -600,5 +600,7 @@ rec { types-aiobotocore-route53 = buildTypesAiobotocorePackage "route53" "2.6.0" "sha256-RMIrcFD+1RbA3AcRw3TSjENBzmHQL1zHX7FoOFA+UP0="; + types-aiobotocore-route53-recovery-cluster = buildTypesAiobotocorePackage "route53-recovery-cluster" "2.6.0" "sha256-mBwT11n8moLt/j46AayYES6rjVo3Tpa5UWJ4Klb1N0g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5bf63be49596..50d034d3ae45 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14701,6 +14701,8 @@ self: super: with self; { types-aiobotocore-route53 + types-aiobotocore-route53-recovery-cluster + types-aiobotocore-xray ; From 8e66e7121fd8a562540d7bb405fcb3754f354121 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:12:58 -0700 Subject: [PATCH 286/420] python3Packages.types-aiobotocore-route53-recovery-control-config: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4c368ee9cdaa..9333b630a612 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -602,5 +602,7 @@ rec { types-aiobotocore-route53-recovery-cluster = buildTypesAiobotocorePackage "route53-recovery-cluster" "2.6.0" "sha256-mBwT11n8moLt/j46AayYES6rjVo3Tpa5UWJ4Klb1N0g="; + types-aiobotocore-route53-recovery-control-config = buildTypesAiobotocorePackage "route53-recovery-control-config" "2.6.0" "sha256-qYYT1FRpqxtR9LPGMOH+p0+kbeGvfrlIE6rp5Nupioc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 50d034d3ae45..b219801d521d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14703,6 +14703,8 @@ self: super: with self; { types-aiobotocore-route53-recovery-cluster + types-aiobotocore-route53-recovery-control-config + types-aiobotocore-xray ; From 924e18fe307d360b0904189e5b5ee4aa9b141dc1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:02 -0700 Subject: [PATCH 287/420] python3Packages.types-aiobotocore-route53-recovery-readiness: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9333b630a612..0c6548779eea 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -604,5 +604,7 @@ rec { types-aiobotocore-route53-recovery-control-config = buildTypesAiobotocorePackage "route53-recovery-control-config" "2.6.0" "sha256-qYYT1FRpqxtR9LPGMOH+p0+kbeGvfrlIE6rp5Nupioc="; + types-aiobotocore-route53-recovery-readiness = buildTypesAiobotocorePackage "route53-recovery-readiness" "2.6.0" "sha256-66kGFeDv4PkKYd4UEL4Feqw5LnygBMGvHqctC4EWnNU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b219801d521d..4df292022b8b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14705,6 +14705,8 @@ self: super: with self; { types-aiobotocore-route53-recovery-control-config + types-aiobotocore-route53-recovery-readiness + types-aiobotocore-xray ; From aa517584452894e4ac831783295b2e115aa241a6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:06 -0700 Subject: [PATCH 288/420] python3Packages.types-aiobotocore-route53domains: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0c6548779eea..9d454ac2a646 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -606,5 +606,7 @@ rec { types-aiobotocore-route53-recovery-readiness = buildTypesAiobotocorePackage "route53-recovery-readiness" "2.6.0" "sha256-66kGFeDv4PkKYd4UEL4Feqw5LnygBMGvHqctC4EWnNU="; + types-aiobotocore-route53domains = buildTypesAiobotocorePackage "route53domains" "2.6.0" "sha256-TQ7aNPrky6O+xQefuSkHyFN0XJC5u3xMaT0yrjwYv3E="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4df292022b8b..d5ef31a7a387 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14707,6 +14707,8 @@ self: super: with self; { types-aiobotocore-route53-recovery-readiness + types-aiobotocore-route53domains + types-aiobotocore-xray ; From 83938846ea23f10e4fabbe4d5295871e3a71ac28 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:11 -0700 Subject: [PATCH 289/420] python3Packages.types-aiobotocore-route53resolver: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9d454ac2a646..4f3384b61b38 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -608,5 +608,7 @@ rec { types-aiobotocore-route53domains = buildTypesAiobotocorePackage "route53domains" "2.6.0" "sha256-TQ7aNPrky6O+xQefuSkHyFN0XJC5u3xMaT0yrjwYv3E="; + types-aiobotocore-route53resolver = buildTypesAiobotocorePackage "route53resolver" "2.6.0" "sha256-55qUjFm6ryLjGAmxGLFkl9dPHXjDWyIINZQRQXe4bnk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d5ef31a7a387..996bb4f6fdc1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14709,6 +14709,8 @@ self: super: with self; { types-aiobotocore-route53domains + types-aiobotocore-route53resolver + types-aiobotocore-xray ; From 5d3dc9db4f0be4d0ca3fb7a4a6f0f3bef4b928c6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:15 -0700 Subject: [PATCH 290/420] python3Packages.types-aiobotocore-rum: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4f3384b61b38..7fb98760a076 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -610,5 +610,7 @@ rec { types-aiobotocore-route53resolver = buildTypesAiobotocorePackage "route53resolver" "2.6.0" "sha256-55qUjFm6ryLjGAmxGLFkl9dPHXjDWyIINZQRQXe4bnk="; + types-aiobotocore-rum = buildTypesAiobotocorePackage "rum" "2.6.0" "sha256-e8LzXHMfEgkcJKx5a/I//L4/oCz1l7N487wNoTtBP1Y="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 996bb4f6fdc1..1951cdbaebc8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14711,6 +14711,8 @@ self: super: with self; { types-aiobotocore-route53resolver + types-aiobotocore-rum + types-aiobotocore-xray ; From 4b3ec514836411b4cdd64e8b27f5fe8018eba32e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:19 -0700 Subject: [PATCH 291/420] python3Packages.types-aiobotocore-s3: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7fb98760a076..5addcb38dce3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -612,5 +612,7 @@ rec { types-aiobotocore-rum = buildTypesAiobotocorePackage "rum" "2.6.0" "sha256-e8LzXHMfEgkcJKx5a/I//L4/oCz1l7N487wNoTtBP1Y="; + types-aiobotocore-s3 = buildTypesAiobotocorePackage "s3" "2.6.0" "sha256-MIp/lGwJah2Jj/2KFfoeW2uQlV1DZbP8TYcdsNvEMU8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1951cdbaebc8..33241ab31d28 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14713,6 +14713,8 @@ self: super: with self; { types-aiobotocore-rum + types-aiobotocore-s3 + types-aiobotocore-xray ; From 2652816cef5e4c33b41e150ee466ddc9640802e3 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:24 -0700 Subject: [PATCH 292/420] python3Packages.types-aiobotocore-s3control: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5addcb38dce3..bde58f1eebfd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -614,5 +614,7 @@ rec { types-aiobotocore-s3 = buildTypesAiobotocorePackage "s3" "2.6.0" "sha256-MIp/lGwJah2Jj/2KFfoeW2uQlV1DZbP8TYcdsNvEMU8="; + types-aiobotocore-s3control = buildTypesAiobotocorePackage "s3control" "2.6.0" "sha256-eyiAFFT5KOtTDT2EZNah1KRdcWw1v1titjHwG3DnRj4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 33241ab31d28..5b1cf4b65c98 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14715,6 +14715,8 @@ self: super: with self; { types-aiobotocore-s3 + types-aiobotocore-s3control + types-aiobotocore-xray ; From 42bfde15f83ef38700198945de9a7e598ed9985b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:28 -0700 Subject: [PATCH 293/420] python3Packages.types-aiobotocore-s3outposts: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bde58f1eebfd..4dfbfcc0b383 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -616,5 +616,7 @@ rec { types-aiobotocore-s3control = buildTypesAiobotocorePackage "s3control" "2.6.0" "sha256-eyiAFFT5KOtTDT2EZNah1KRdcWw1v1titjHwG3DnRj4="; + types-aiobotocore-s3outposts = buildTypesAiobotocorePackage "s3outposts" "2.6.0" "sha256-g4wAsVc3gqiovsXZtEey4XKmLp/UkIeKD1pEjiey5DE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5b1cf4b65c98..cfb8f2411c6a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14717,6 +14717,8 @@ self: super: with self; { types-aiobotocore-s3control + types-aiobotocore-s3outposts + types-aiobotocore-xray ; From 961b0e9707f66d5b4665ec389082109ef5f9bb0f Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:32 -0700 Subject: [PATCH 294/420] python3Packages.types-aiobotocore-sagemaker: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4dfbfcc0b383..e34ad6b1e63a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -618,5 +618,7 @@ rec { types-aiobotocore-s3outposts = buildTypesAiobotocorePackage "s3outposts" "2.6.0" "sha256-g4wAsVc3gqiovsXZtEey4XKmLp/UkIeKD1pEjiey5DE="; + types-aiobotocore-sagemaker = buildTypesAiobotocorePackage "sagemaker" "2.6.0" "sha256-GUcRyWviI+JCG7XTGBQcUljxAdjBzso76d5A3ql5lbA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cfb8f2411c6a..ba3d278dc7f7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14719,6 +14719,8 @@ self: super: with self; { types-aiobotocore-s3outposts + types-aiobotocore-sagemaker + types-aiobotocore-xray ; From 106a94b15b1be7ee1fb1d750d2d3e19b527c2b6a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:36 -0700 Subject: [PATCH 295/420] python3Packages.types-aiobotocore-sagemaker-a2i-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e34ad6b1e63a..7abee685abd7 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -620,5 +620,7 @@ rec { types-aiobotocore-sagemaker = buildTypesAiobotocorePackage "sagemaker" "2.6.0" "sha256-GUcRyWviI+JCG7XTGBQcUljxAdjBzso76d5A3ql5lbA="; + types-aiobotocore-sagemaker-a2i-runtime = buildTypesAiobotocorePackage "sagemaker-a2i-runtime" "2.6.0" "sha256-7znJt8gJGnBbTndTPeFOpN6iytOPTJPgvA/tHeYQVoo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ba3d278dc7f7..4c8ec24500a4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14721,6 +14721,8 @@ self: super: with self; { types-aiobotocore-sagemaker + types-aiobotocore-sagemaker-a2i-runtime + types-aiobotocore-xray ; From ce6580c8066a59da269d3b9dd6f3516b9522ade0 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:40 -0700 Subject: [PATCH 296/420] python3Packages.types-aiobotocore-sagemaker-edge: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7abee685abd7..c86515017634 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -622,5 +622,7 @@ rec { types-aiobotocore-sagemaker-a2i-runtime = buildTypesAiobotocorePackage "sagemaker-a2i-runtime" "2.6.0" "sha256-7znJt8gJGnBbTndTPeFOpN6iytOPTJPgvA/tHeYQVoo="; + types-aiobotocore-sagemaker-edge = buildTypesAiobotocorePackage "sagemaker-edge" "2.6.0" "sha256-O3oCXuvREHW7lcwDzbJRogb9Qa2Wfb8C5/rbpjhVm8A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4c8ec24500a4..8b551dfc1e45 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14723,6 +14723,8 @@ self: super: with self; { types-aiobotocore-sagemaker-a2i-runtime + types-aiobotocore-sagemaker-edge + types-aiobotocore-xray ; From 9299e3a3cd8e1aa128c675fd561cc7d00879c605 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:44 -0700 Subject: [PATCH 297/420] python3Packages.types-aiobotocore-sagemaker-featurestore-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c86515017634..f5f05728bf0a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -624,5 +624,7 @@ rec { types-aiobotocore-sagemaker-edge = buildTypesAiobotocorePackage "sagemaker-edge" "2.6.0" "sha256-O3oCXuvREHW7lcwDzbJRogb9Qa2Wfb8C5/rbpjhVm8A="; + types-aiobotocore-sagemaker-featurestore-runtime = buildTypesAiobotocorePackage "sagemaker-featurestore-runtime" "2.6.0" "sha256-mcU7ZGAGzbV7i8H1qMWFI9vm/8APRfmaAncxKBJL+NU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8b551dfc1e45..d7e1fe070f24 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14725,6 +14725,8 @@ self: super: with self; { types-aiobotocore-sagemaker-edge + types-aiobotocore-sagemaker-featurestore-runtime + types-aiobotocore-xray ; From 32ad525422b626daf2d611a64c45f07badad7d87 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:49 -0700 Subject: [PATCH 298/420] python3Packages.types-aiobotocore-sagemaker-geospatial: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f5f05728bf0a..72c1df276de1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -626,5 +626,7 @@ rec { types-aiobotocore-sagemaker-featurestore-runtime = buildTypesAiobotocorePackage "sagemaker-featurestore-runtime" "2.6.0" "sha256-mcU7ZGAGzbV7i8H1qMWFI9vm/8APRfmaAncxKBJL+NU="; + types-aiobotocore-sagemaker-geospatial = buildTypesAiobotocorePackage "sagemaker-geospatial" "2.6.0" "sha256-uKvgKNZHFZIYsE0hMWjuHN+QzI/eQcCn4HD2C8H+d2I="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d7e1fe070f24..8e5fa1a806c6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14727,6 +14727,8 @@ self: super: with self; { types-aiobotocore-sagemaker-featurestore-runtime + types-aiobotocore-sagemaker-geospatial + types-aiobotocore-xray ; From 0704988ff75af63d40cafd9631c2119166e7e15a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:53 -0700 Subject: [PATCH 299/420] python3Packages.types-aiobotocore-sagemaker-metrics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 72c1df276de1..721d6e82778e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -628,5 +628,7 @@ rec { types-aiobotocore-sagemaker-geospatial = buildTypesAiobotocorePackage "sagemaker-geospatial" "2.6.0" "sha256-uKvgKNZHFZIYsE0hMWjuHN+QzI/eQcCn4HD2C8H+d2I="; + types-aiobotocore-sagemaker-metrics = buildTypesAiobotocorePackage "sagemaker-metrics" "2.6.0" "sha256-Hnq9JAdPiqfhb/uLQhMk7JWZ8xHko06KqHXh9f6al/8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8e5fa1a806c6..8a0aec0fb07d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14729,6 +14729,8 @@ self: super: with self; { types-aiobotocore-sagemaker-geospatial + types-aiobotocore-sagemaker-metrics + types-aiobotocore-xray ; From d8f7b561633d98344e51b8cb580f36b881298273 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:13:57 -0700 Subject: [PATCH 300/420] python3Packages.types-aiobotocore-sagemaker-runtime: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 721d6e82778e..a58a9d38a82a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -630,5 +630,7 @@ rec { types-aiobotocore-sagemaker-metrics = buildTypesAiobotocorePackage "sagemaker-metrics" "2.6.0" "sha256-Hnq9JAdPiqfhb/uLQhMk7JWZ8xHko06KqHXh9f6al/8="; + types-aiobotocore-sagemaker-runtime = buildTypesAiobotocorePackage "sagemaker-runtime" "2.6.0" "sha256-/7Zzo383eWFjEHxZST1QKzTNHunhR8mjSE2uEHUw9IE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8a0aec0fb07d..350aa7df6c1c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14731,6 +14731,8 @@ self: super: with self; { types-aiobotocore-sagemaker-metrics + types-aiobotocore-sagemaker-runtime + types-aiobotocore-xray ; From 1881a01ab35cb310bcd94a35e921f64c103e0458 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:01 -0700 Subject: [PATCH 301/420] python3Packages.types-aiobotocore-savingsplans: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a58a9d38a82a..0cae7794c33d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -632,5 +632,7 @@ rec { types-aiobotocore-sagemaker-runtime = buildTypesAiobotocorePackage "sagemaker-runtime" "2.6.0" "sha256-/7Zzo383eWFjEHxZST1QKzTNHunhR8mjSE2uEHUw9IE="; + types-aiobotocore-savingsplans = buildTypesAiobotocorePackage "savingsplans" "2.6.0" "sha256-6sIHmILzIg1aOskXnjbDDzbkygXDwFcnd9mfuuhRFZQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 350aa7df6c1c..9bbd8cbdcbbe 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14733,6 +14733,8 @@ self: super: with self; { types-aiobotocore-sagemaker-runtime + types-aiobotocore-savingsplans + types-aiobotocore-xray ; From 22443f670066beb5af1fa115eba89e516fcba397 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:05 -0700 Subject: [PATCH 302/420] python3Packages.types-aiobotocore-scheduler: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0cae7794c33d..36fab09b4d81 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -634,5 +634,7 @@ rec { types-aiobotocore-savingsplans = buildTypesAiobotocorePackage "savingsplans" "2.6.0" "sha256-6sIHmILzIg1aOskXnjbDDzbkygXDwFcnd9mfuuhRFZQ="; + types-aiobotocore-scheduler = buildTypesAiobotocorePackage "scheduler" "2.6.0" "sha256-2BnFCPgaAWxBsc+79oQT+DDj6IM7cV7F+LjqsFG6BBc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9bbd8cbdcbbe..460c5df0ae1f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14735,6 +14735,8 @@ self: super: with self; { types-aiobotocore-savingsplans + types-aiobotocore-scheduler + types-aiobotocore-xray ; From 9e3ee2c99cf76e03e7e84b25eeb398fbb26cc25a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:10 -0700 Subject: [PATCH 303/420] python3Packages.types-aiobotocore-schemas: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 36fab09b4d81..fae3ede7a5c0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -636,5 +636,7 @@ rec { types-aiobotocore-scheduler = buildTypesAiobotocorePackage "scheduler" "2.6.0" "sha256-2BnFCPgaAWxBsc+79oQT+DDj6IM7cV7F+LjqsFG6BBc="; + types-aiobotocore-schemas = buildTypesAiobotocorePackage "schemas" "2.6.0" "sha256-TW57DJw0QgnPrIWlOlAvESYSEPUD/UKbXVs+NYW+7r0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 460c5df0ae1f..6ad384338cf5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14737,6 +14737,8 @@ self: super: with self; { types-aiobotocore-scheduler + types-aiobotocore-schemas + types-aiobotocore-xray ; From 5fb23e17674ec5116cdf6e27af7401841fd8a46e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:14 -0700 Subject: [PATCH 304/420] python3Packages.types-aiobotocore-sdb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fae3ede7a5c0..d5f9c1811e28 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -638,5 +638,7 @@ rec { types-aiobotocore-schemas = buildTypesAiobotocorePackage "schemas" "2.6.0" "sha256-TW57DJw0QgnPrIWlOlAvESYSEPUD/UKbXVs+NYW+7r0="; + types-aiobotocore-sdb = buildTypesAiobotocorePackage "sdb" "2.6.0" "sha256-cLciwg4d5EZKYquNitl3yD+8eJnemEiF27LcXfxy0Zs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ad384338cf5..8347feb2993a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14739,6 +14739,8 @@ self: super: with self; { types-aiobotocore-schemas + types-aiobotocore-sdb + types-aiobotocore-xray ; From 9960da7b86e425abdf570b8c85cc964ce6157456 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:18 -0700 Subject: [PATCH 305/420] python3Packages.types-aiobotocore-secretsmanager: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d5f9c1811e28..ef83b92a5575 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -640,5 +640,7 @@ rec { types-aiobotocore-sdb = buildTypesAiobotocorePackage "sdb" "2.6.0" "sha256-cLciwg4d5EZKYquNitl3yD+8eJnemEiF27LcXfxy0Zs="; + types-aiobotocore-secretsmanager = buildTypesAiobotocorePackage "secretsmanager" "2.6.0" "sha256-dvte4Yjl+a/UqL5v7xJ9626igVjx/ZPdM2SsLGsVdDk="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8347feb2993a..a9e7a5a3e45e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14741,6 +14741,8 @@ self: super: with self; { types-aiobotocore-sdb + types-aiobotocore-secretsmanager + types-aiobotocore-xray ; From a1af4e100fdd9ab19a8eb3301e908e0d60e89f5c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:22 -0700 Subject: [PATCH 306/420] python3Packages.types-aiobotocore-securityhub: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ef83b92a5575..c7e2125b41d1 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -642,5 +642,7 @@ rec { types-aiobotocore-secretsmanager = buildTypesAiobotocorePackage "secretsmanager" "2.6.0" "sha256-dvte4Yjl+a/UqL5v7xJ9626igVjx/ZPdM2SsLGsVdDk="; + types-aiobotocore-securityhub = buildTypesAiobotocorePackage "securityhub" "2.6.0" "sha256-36BIOCHnkFyEp3MPa5NfjNJNBeqVMCmx9C907Bw3YWQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a9e7a5a3e45e..4f6e2dbae899 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14743,6 +14743,8 @@ self: super: with self; { types-aiobotocore-secretsmanager + types-aiobotocore-securityhub + types-aiobotocore-xray ; From 59c6eb125a933107c8d166a5b84000cb3af01279 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:27 -0700 Subject: [PATCH 307/420] python3Packages.types-aiobotocore-securitylake: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c7e2125b41d1..1d34f3ec7c64 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -644,5 +644,7 @@ rec { types-aiobotocore-securityhub = buildTypesAiobotocorePackage "securityhub" "2.6.0" "sha256-36BIOCHnkFyEp3MPa5NfjNJNBeqVMCmx9C907Bw3YWQ="; + types-aiobotocore-securitylake = buildTypesAiobotocorePackage "securitylake" "2.6.0" "sha256-DKmk2ddd7b0g6mnt0d37Y1ofb6dgN/6XFBCElqdQ9+A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4f6e2dbae899..08a93d73a671 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14745,6 +14745,8 @@ self: super: with self; { types-aiobotocore-securityhub + types-aiobotocore-securitylake + types-aiobotocore-xray ; From d897049e8001ba2430ce9faffe72649328ee4e05 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:31 -0700 Subject: [PATCH 308/420] python3Packages.types-aiobotocore-serverlessrepo: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1d34f3ec7c64..b1d4991ebd96 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -646,5 +646,7 @@ rec { types-aiobotocore-securitylake = buildTypesAiobotocorePackage "securitylake" "2.6.0" "sha256-DKmk2ddd7b0g6mnt0d37Y1ofb6dgN/6XFBCElqdQ9+A="; + types-aiobotocore-serverlessrepo = buildTypesAiobotocorePackage "serverlessrepo" "2.6.0" "sha256-PRzh/JFCHUqXTSAR4IoftxvkRBsVq4XEX7ihC9FzqSI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 08a93d73a671..d3b072bca051 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14747,6 +14747,8 @@ self: super: with self; { types-aiobotocore-securitylake + types-aiobotocore-serverlessrepo + types-aiobotocore-xray ; From 83f11fa094bffc6f01fb06f90dd3b6ab5ef1d1ab Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:35 -0700 Subject: [PATCH 309/420] python3Packages.types-aiobotocore-service-quotas: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b1d4991ebd96..7ca0ddbb02aa 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -648,5 +648,7 @@ rec { types-aiobotocore-serverlessrepo = buildTypesAiobotocorePackage "serverlessrepo" "2.6.0" "sha256-PRzh/JFCHUqXTSAR4IoftxvkRBsVq4XEX7ihC9FzqSI="; + types-aiobotocore-service-quotas = buildTypesAiobotocorePackage "service-quotas" "2.6.0" "sha256-GcDl3LIy+urPEzXINmU4g7xgk8IIIJ6fBFFXhv18eSA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d3b072bca051..c9870dc9785b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14749,6 +14749,8 @@ self: super: with self; { types-aiobotocore-serverlessrepo + types-aiobotocore-service-quotas + types-aiobotocore-xray ; From 76a59d41ff82cbeae6a70c5f64f19e4238eda806 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:40 -0700 Subject: [PATCH 310/420] python3Packages.types-aiobotocore-servicecatalog: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 7ca0ddbb02aa..11921098cfdb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -650,5 +650,7 @@ rec { types-aiobotocore-service-quotas = buildTypesAiobotocorePackage "service-quotas" "2.6.0" "sha256-GcDl3LIy+urPEzXINmU4g7xgk8IIIJ6fBFFXhv18eSA="; + types-aiobotocore-servicecatalog = buildTypesAiobotocorePackage "servicecatalog" "2.6.0" "sha256-5IoQuLh6bh3mlzInR+Aci6yIRCSYJXfbvv49FEs2tPA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c9870dc9785b..5cf7d3f0cdb4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14751,6 +14751,8 @@ self: super: with self; { types-aiobotocore-service-quotas + types-aiobotocore-servicecatalog + types-aiobotocore-xray ; From be5e0e2d5dc867751a6058f23c07352c7facaf8e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:44 -0700 Subject: [PATCH 311/420] python3Packages.types-aiobotocore-servicecatalog-appregistry: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 11921098cfdb..87fc44964b14 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -652,5 +652,7 @@ rec { types-aiobotocore-servicecatalog = buildTypesAiobotocorePackage "servicecatalog" "2.6.0" "sha256-5IoQuLh6bh3mlzInR+Aci6yIRCSYJXfbvv49FEs2tPA="; + types-aiobotocore-servicecatalog-appregistry = buildTypesAiobotocorePackage "servicecatalog-appregistry" "2.6.0" "sha256-l0xrQXkDYmB3+RFtwJ70l6GgKeA0z1V107HG8Ddvb8U="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5cf7d3f0cdb4..92a855a54219 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14753,6 +14753,8 @@ self: super: with self; { types-aiobotocore-servicecatalog + types-aiobotocore-servicecatalog-appregistry + types-aiobotocore-xray ; From 83f13dbc6543f8210175bb095989144a8fa4d4ad Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:48 -0700 Subject: [PATCH 312/420] python3Packages.types-aiobotocore-servicediscovery: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 87fc44964b14..5227d1f1853d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -654,5 +654,7 @@ rec { types-aiobotocore-servicecatalog-appregistry = buildTypesAiobotocorePackage "servicecatalog-appregistry" "2.6.0" "sha256-l0xrQXkDYmB3+RFtwJ70l6GgKeA0z1V107HG8Ddvb8U="; + types-aiobotocore-servicediscovery = buildTypesAiobotocorePackage "servicediscovery" "2.6.0" "sha256-KLdOmaO6x7AmQInP1RRAf8s5rlpD0PpDHeBnor5gl2A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 92a855a54219..234fddbaa56c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14755,6 +14755,8 @@ self: super: with self; { types-aiobotocore-servicecatalog-appregistry + types-aiobotocore-servicediscovery + types-aiobotocore-xray ; From aba19a64e07376a6590dab8c16486f46af8a84bb Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:53 -0700 Subject: [PATCH 313/420] python3Packages.types-aiobotocore-ses: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5227d1f1853d..4e76cb2dedf0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -656,5 +656,7 @@ rec { types-aiobotocore-servicediscovery = buildTypesAiobotocorePackage "servicediscovery" "2.6.0" "sha256-KLdOmaO6x7AmQInP1RRAf8s5rlpD0PpDHeBnor5gl2A="; + types-aiobotocore-ses = buildTypesAiobotocorePackage "ses" "2.6.0" "sha256-QNjpM0m1PKSQx2f1eNkOeNP7pHN0PfHZlMFVQbGOgGU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 234fddbaa56c..1945cbf7f382 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14757,6 +14757,8 @@ self: super: with self; { types-aiobotocore-servicediscovery + types-aiobotocore-ses + types-aiobotocore-xray ; From 4c695a261927938fa0c0fe7519bb8d98610756ad Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:14:57 -0700 Subject: [PATCH 314/420] python3Packages.types-aiobotocore-sesv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4e76cb2dedf0..0180b2f76b50 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -658,5 +658,7 @@ rec { types-aiobotocore-ses = buildTypesAiobotocorePackage "ses" "2.6.0" "sha256-QNjpM0m1PKSQx2f1eNkOeNP7pHN0PfHZlMFVQbGOgGU="; + types-aiobotocore-sesv2 = buildTypesAiobotocorePackage "sesv2" "2.6.0" "sha256-5g1LUvS324evqH+Rv+pUKlePnE3QqMqpiLCrknxjQX8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1945cbf7f382..7de30567052c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14759,6 +14759,8 @@ self: super: with self; { types-aiobotocore-ses + types-aiobotocore-sesv2 + types-aiobotocore-xray ; From ba20c4bcf4564dc8c4af795c59723e2a9661b1c9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:01 -0700 Subject: [PATCH 315/420] python3Packages.types-aiobotocore-shield: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0180b2f76b50..c757ddf0ea86 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -660,5 +660,7 @@ rec { types-aiobotocore-sesv2 = buildTypesAiobotocorePackage "sesv2" "2.6.0" "sha256-5g1LUvS324evqH+Rv+pUKlePnE3QqMqpiLCrknxjQX8="; + types-aiobotocore-shield = buildTypesAiobotocorePackage "shield" "2.6.0" "sha256-5NbnrGPo9jTCIxq7ubNX/OuKZOXU0PoSwgTjfuMvnKY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7de30567052c..5374293363ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14761,6 +14761,8 @@ self: super: with self; { types-aiobotocore-sesv2 + types-aiobotocore-shield + types-aiobotocore-xray ; From 0765fd1616066f70b074d5b9ce255d46e25d9e31 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:05 -0700 Subject: [PATCH 316/420] python3Packages.types-aiobotocore-signer: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c757ddf0ea86..c6aa99ed0594 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -662,5 +662,7 @@ rec { types-aiobotocore-shield = buildTypesAiobotocorePackage "shield" "2.6.0" "sha256-5NbnrGPo9jTCIxq7ubNX/OuKZOXU0PoSwgTjfuMvnKY="; + types-aiobotocore-signer = buildTypesAiobotocorePackage "signer" "2.6.0" "sha256-AZRsUZpKhzPiHoUcboBeX5zYlVD9kY6F4n6/ifRTpr8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5374293363ee..42a8f1ad4bf2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14763,6 +14763,8 @@ self: super: with self; { types-aiobotocore-shield + types-aiobotocore-signer + types-aiobotocore-xray ; From cbb714f99f448605ca945fd0d160176ed20e4642 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:09 -0700 Subject: [PATCH 317/420] python3Packages.types-aiobotocore-simspaceweaver: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c6aa99ed0594..a23e407d55f0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -664,5 +664,7 @@ rec { types-aiobotocore-signer = buildTypesAiobotocorePackage "signer" "2.6.0" "sha256-AZRsUZpKhzPiHoUcboBeX5zYlVD9kY6F4n6/ifRTpr8="; + types-aiobotocore-simspaceweaver = buildTypesAiobotocorePackage "simspaceweaver" "2.6.0" "sha256-WrkKQxXI7eIaX4GimyDyBqDWVjw0eF3jJTA40JScvG0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 42a8f1ad4bf2..586a6c72b7e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14765,6 +14765,8 @@ self: super: with self; { types-aiobotocore-signer + types-aiobotocore-simspaceweaver + types-aiobotocore-xray ; From 52a2d78f547ce29f212589f613d7c857ed61f7d9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:14 -0700 Subject: [PATCH 318/420] python3Packages.types-aiobotocore-sms: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a23e407d55f0..0d6b1b2f55dd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -666,5 +666,7 @@ rec { types-aiobotocore-simspaceweaver = buildTypesAiobotocorePackage "simspaceweaver" "2.6.0" "sha256-WrkKQxXI7eIaX4GimyDyBqDWVjw0eF3jJTA40JScvG0="; + types-aiobotocore-sms = buildTypesAiobotocorePackage "sms" "2.6.0" "sha256-I//ZK5HolYkCfpTCPYhEDALfcn9AYcLk7x7vfRjTDlo="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 586a6c72b7e8..43c4888ea73f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14767,6 +14767,8 @@ self: super: with self; { types-aiobotocore-simspaceweaver + types-aiobotocore-sms + types-aiobotocore-xray ; From 012e29cc923dbc2c9b640b5c0dc20c2343767206 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:18 -0700 Subject: [PATCH 319/420] python3Packages.types-aiobotocore-sms-voice: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 0d6b1b2f55dd..dfbe87487f19 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -668,5 +668,7 @@ rec { types-aiobotocore-sms = buildTypesAiobotocorePackage "sms" "2.6.0" "sha256-I//ZK5HolYkCfpTCPYhEDALfcn9AYcLk7x7vfRjTDlo="; + types-aiobotocore-sms-voice = buildTypesAiobotocorePackage "sms-voice" "2.6.0" "sha256-Qz+ZXVBSe3kHgGlqQjgxWoQhnguqauxmPKaISQbAG/8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 43c4888ea73f..3e648b26e80b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14769,6 +14769,8 @@ self: super: with self; { types-aiobotocore-sms + types-aiobotocore-sms-voice + types-aiobotocore-xray ; From 5e9e4640a602689d5e50b97db8566db35e466b8e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:22 -0700 Subject: [PATCH 320/420] python3Packages.types-aiobotocore-snow-device-management: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index dfbe87487f19..f70e5ce057f0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -670,5 +670,7 @@ rec { types-aiobotocore-sms-voice = buildTypesAiobotocorePackage "sms-voice" "2.6.0" "sha256-Qz+ZXVBSe3kHgGlqQjgxWoQhnguqauxmPKaISQbAG/8="; + types-aiobotocore-snow-device-management = buildTypesAiobotocorePackage "snow-device-management" "2.6.0" "sha256-Fh35RpHExkL/PeqEnWNR2pJYWERDJzOF9oE3SvIxxQ4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3e648b26e80b..00ac1577d9f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14771,6 +14771,8 @@ self: super: with self; { types-aiobotocore-sms-voice + types-aiobotocore-snow-device-management + types-aiobotocore-xray ; From 4f2216af7a89d66bdd9892f1d8e6e7e603a3eb16 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:27 -0700 Subject: [PATCH 321/420] python3Packages.types-aiobotocore-snowball: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f70e5ce057f0..b62f08727a98 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -672,5 +672,7 @@ rec { types-aiobotocore-snow-device-management = buildTypesAiobotocorePackage "snow-device-management" "2.6.0" "sha256-Fh35RpHExkL/PeqEnWNR2pJYWERDJzOF9oE3SvIxxQ4="; + types-aiobotocore-snowball = buildTypesAiobotocorePackage "snowball" "2.6.0" "sha256-Wia4Xc/Kt8j6X5rZ9vvxupr6tCv1XQQQFOwRnugL0lE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 00ac1577d9f5..b10bb9178a46 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14773,6 +14773,8 @@ self: super: with self; { types-aiobotocore-snow-device-management + types-aiobotocore-snowball + types-aiobotocore-xray ; From ebff6820743679d23942a32bf49d5d69a3a29c51 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:31 -0700 Subject: [PATCH 322/420] python3Packages.types-aiobotocore-sns: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b62f08727a98..ce104152f55b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -674,5 +674,7 @@ rec { types-aiobotocore-snowball = buildTypesAiobotocorePackage "snowball" "2.6.0" "sha256-Wia4Xc/Kt8j6X5rZ9vvxupr6tCv1XQQQFOwRnugL0lE="; + types-aiobotocore-sns = buildTypesAiobotocorePackage "sns" "2.6.0" "sha256-hDPU7e14iYcpt8dXzjx7PgT4TQloAn2ZYrq6cMtMncc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b10bb9178a46..381ea6f591e6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14775,6 +14775,8 @@ self: super: with self; { types-aiobotocore-snowball + types-aiobotocore-sns + types-aiobotocore-xray ; From 4c7453a0ae3802637038b769ea3b9d471decea1e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:35 -0700 Subject: [PATCH 323/420] python3Packages.types-aiobotocore-sqs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index ce104152f55b..1b75f6969c8b 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -676,5 +676,7 @@ rec { types-aiobotocore-sns = buildTypesAiobotocorePackage "sns" "2.6.0" "sha256-hDPU7e14iYcpt8dXzjx7PgT4TQloAn2ZYrq6cMtMncc="; + types-aiobotocore-sqs = buildTypesAiobotocorePackage "sqs" "2.6.0" "sha256-J5QSpJQjhO6T2uGpDstHdEVJTLuTIxilmYmKdtB7u6g="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 381ea6f591e6..71df0284d6a0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14777,6 +14777,8 @@ self: super: with self; { types-aiobotocore-sns + types-aiobotocore-sqs + types-aiobotocore-xray ; From 41b408dc92f982a4effac4ce1acc1856ed78a98b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:40 -0700 Subject: [PATCH 324/420] python3Packages.types-aiobotocore-ssm: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 1b75f6969c8b..afc9ebe9fc07 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -678,5 +678,7 @@ rec { types-aiobotocore-sqs = buildTypesAiobotocorePackage "sqs" "2.6.0" "sha256-J5QSpJQjhO6T2uGpDstHdEVJTLuTIxilmYmKdtB7u6g="; + types-aiobotocore-ssm = buildTypesAiobotocorePackage "ssm" "2.6.0" "sha256-NxTwgcrDNOHZ8PReIgfTOGLTl7bL1948NKAyjJ0QYKc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 71df0284d6a0..82a6d429a661 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14779,6 +14779,8 @@ self: super: with self; { types-aiobotocore-sqs + types-aiobotocore-ssm + types-aiobotocore-xray ; From 2c33f4833b41b0165eef95bb4fc023dc931469e5 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:44 -0700 Subject: [PATCH 325/420] python3Packages.types-aiobotocore-ssm-contacts: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index afc9ebe9fc07..d34c74f68f43 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -680,5 +680,7 @@ rec { types-aiobotocore-ssm = buildTypesAiobotocorePackage "ssm" "2.6.0" "sha256-NxTwgcrDNOHZ8PReIgfTOGLTl7bL1948NKAyjJ0QYKc="; + types-aiobotocore-ssm-contacts = buildTypesAiobotocorePackage "ssm-contacts" "2.6.0" "sha256-fWnCKnG6ikXzDx40HFxlh9DyLVlX9pBB4CMcJxUt+Ps="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 82a6d429a661..fff80bc18cf4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14781,6 +14781,8 @@ self: super: with self; { types-aiobotocore-ssm + types-aiobotocore-ssm-contacts + types-aiobotocore-xray ; From 978663597df96113e185eb189e461a291ba903e1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:48 -0700 Subject: [PATCH 326/420] python3Packages.types-aiobotocore-ssm-incidents: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d34c74f68f43..af34dd2d08cb 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -682,5 +682,7 @@ rec { types-aiobotocore-ssm-contacts = buildTypesAiobotocorePackage "ssm-contacts" "2.6.0" "sha256-fWnCKnG6ikXzDx40HFxlh9DyLVlX9pBB4CMcJxUt+Ps="; + types-aiobotocore-ssm-incidents = buildTypesAiobotocorePackage "ssm-incidents" "2.6.0" "sha256-6wkvuRGT91a0Ggxt13amMzjWd6Pj62w4nrvWQNQ0GxI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fff80bc18cf4..4ef1e0dc9b60 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14783,6 +14783,8 @@ self: super: with self; { types-aiobotocore-ssm-contacts + types-aiobotocore-ssm-incidents + types-aiobotocore-xray ; From 20053628cb7b96734319e132225590bc2152c0d8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:53 -0700 Subject: [PATCH 327/420] python3Packages.types-aiobotocore-ssm-sap: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index af34dd2d08cb..bbf94210f13a 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -684,5 +684,7 @@ rec { types-aiobotocore-ssm-incidents = buildTypesAiobotocorePackage "ssm-incidents" "2.6.0" "sha256-6wkvuRGT91a0Ggxt13amMzjWd6Pj62w4nrvWQNQ0GxI="; + types-aiobotocore-ssm-sap = buildTypesAiobotocorePackage "ssm-sap" "2.6.0" "sha256-7NkEDcuph8xxjlDjuEiSuhvM5srAeY4QfAKLwFLhCsU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4ef1e0dc9b60..0ea65d2fb091 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14785,6 +14785,8 @@ self: super: with self; { types-aiobotocore-ssm-incidents + types-aiobotocore-ssm-sap + types-aiobotocore-xray ; From a5a5ba7ede5d3f886d89e4159bbf38dccb277a39 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:15:57 -0700 Subject: [PATCH 328/420] python3Packages.types-aiobotocore-sso: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index bbf94210f13a..a486410a6d46 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -686,5 +686,7 @@ rec { types-aiobotocore-ssm-sap = buildTypesAiobotocorePackage "ssm-sap" "2.6.0" "sha256-7NkEDcuph8xxjlDjuEiSuhvM5srAeY4QfAKLwFLhCsU="; + types-aiobotocore-sso = buildTypesAiobotocorePackage "sso" "2.6.0" "sha256-pM6yxg0MxTXjSWZ/CLsatlIMx4tO0p9ZKRzOhyJYXWc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0ea65d2fb091..da492cc53607 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14787,6 +14787,8 @@ self: super: with self; { types-aiobotocore-ssm-sap + types-aiobotocore-sso + types-aiobotocore-xray ; From 1d1acfdada474e607745c18c83f12d3244a24d26 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:01 -0700 Subject: [PATCH 329/420] python3Packages.types-aiobotocore-sso-admin: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a486410a6d46..f173940a1e75 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -688,5 +688,7 @@ rec { types-aiobotocore-sso = buildTypesAiobotocorePackage "sso" "2.6.0" "sha256-pM6yxg0MxTXjSWZ/CLsatlIMx4tO0p9ZKRzOhyJYXWc="; + types-aiobotocore-sso-admin = buildTypesAiobotocorePackage "sso-admin" "2.6.0" "sha256-idc5d/Kvjhd7RkTHuErSoP/f64/Q1+jg0TE3UMiL4pQ="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index da492cc53607..6f942fa79fb8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14789,6 +14789,8 @@ self: super: with self; { types-aiobotocore-sso + types-aiobotocore-sso-admin + types-aiobotocore-xray ; From 7cd4d011d545aeb7cebf44095bc431cc9554e66a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:06 -0700 Subject: [PATCH 330/420] python3Packages.types-aiobotocore-sso-oidc: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f173940a1e75..e1308941650f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -690,5 +690,7 @@ rec { types-aiobotocore-sso-admin = buildTypesAiobotocorePackage "sso-admin" "2.6.0" "sha256-idc5d/Kvjhd7RkTHuErSoP/f64/Q1+jg0TE3UMiL4pQ="; + types-aiobotocore-sso-oidc = buildTypesAiobotocorePackage "sso-oidc" "2.6.0" "sha256-3eJaNx/Tzy9XQtHSPGKlkMG7klB2KDgL60knGghWAn8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6f942fa79fb8..1f903d38ed44 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14791,6 +14791,8 @@ self: super: with self; { types-aiobotocore-sso-admin + types-aiobotocore-sso-oidc + types-aiobotocore-xray ; From d0bd129404e6d16f63217de9f75bdfeae6b6bb79 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:10 -0700 Subject: [PATCH 331/420] python3Packages.types-aiobotocore-stepfunctions: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e1308941650f..9d9c9519660c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -692,5 +692,7 @@ rec { types-aiobotocore-sso-oidc = buildTypesAiobotocorePackage "sso-oidc" "2.6.0" "sha256-3eJaNx/Tzy9XQtHSPGKlkMG7klB2KDgL60knGghWAn8="; + types-aiobotocore-stepfunctions = buildTypesAiobotocorePackage "stepfunctions" "2.6.0" "sha256-7y8SiLa09lDqnMZtlG0Qw5tvAvQMvTNqMuCpRecOpXc="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1f903d38ed44..f179345be3a6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14793,6 +14793,8 @@ self: super: with self; { types-aiobotocore-sso-oidc + types-aiobotocore-stepfunctions + types-aiobotocore-xray ; From f65372b38e200c17bacfed6e3eaba1d143f6e189 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:14 -0700 Subject: [PATCH 332/420] python3Packages.types-aiobotocore-storagegateway: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9d9c9519660c..36729f8c2c8e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -694,5 +694,7 @@ rec { types-aiobotocore-stepfunctions = buildTypesAiobotocorePackage "stepfunctions" "2.6.0" "sha256-7y8SiLa09lDqnMZtlG0Qw5tvAvQMvTNqMuCpRecOpXc="; + types-aiobotocore-storagegateway = buildTypesAiobotocorePackage "storagegateway" "2.6.0" "sha256-Umq4Slts9RHPJRJCWRAIAizLxB9Clcz8GomLsUr5gNE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f179345be3a6..5be81b0375b6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14795,6 +14795,8 @@ self: super: with self; { types-aiobotocore-stepfunctions + types-aiobotocore-storagegateway + types-aiobotocore-xray ; From f76da4c6acb0040dc247e3335c5321e8e77c2c1b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:18 -0700 Subject: [PATCH 333/420] python3Packages.types-aiobotocore-sts: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 36729f8c2c8e..e5d5dd0445bd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -696,5 +696,7 @@ rec { types-aiobotocore-storagegateway = buildTypesAiobotocorePackage "storagegateway" "2.6.0" "sha256-Umq4Slts9RHPJRJCWRAIAizLxB9Clcz8GomLsUr5gNE="; + types-aiobotocore-sts = buildTypesAiobotocorePackage "sts" "2.6.0" "sha256-iRwalkojzQCUiAQcxl8hEYFFbnIxhuaJfrATnK18ltI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5be81b0375b6..ea6a7770a222 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14797,6 +14797,8 @@ self: super: with self; { types-aiobotocore-storagegateway + types-aiobotocore-sts + types-aiobotocore-xray ; From eb83198a7bc2fa23eedf8702597b676d28dafc41 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:23 -0700 Subject: [PATCH 334/420] python3Packages.types-aiobotocore-support: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e5d5dd0445bd..60f8029fb90e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -698,5 +698,7 @@ rec { types-aiobotocore-sts = buildTypesAiobotocorePackage "sts" "2.6.0" "sha256-iRwalkojzQCUiAQcxl8hEYFFbnIxhuaJfrATnK18ltI="; + types-aiobotocore-support = buildTypesAiobotocorePackage "support" "2.6.0" "sha256-+4rnAV2Qr29bvWRO6TnSaRZkUVCoefB3SDXc2Ye9kpE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea6a7770a222..0b507548e4d8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14799,6 +14799,8 @@ self: super: with self; { types-aiobotocore-sts + types-aiobotocore-support + types-aiobotocore-xray ; From e7f5f2da3ce7fa243d8e88284b3835b7fe8f3053 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:27 -0700 Subject: [PATCH 335/420] python3Packages.types-aiobotocore-support-app: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 60f8029fb90e..e7163ec044ff 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -700,5 +700,7 @@ rec { types-aiobotocore-support = buildTypesAiobotocorePackage "support" "2.6.0" "sha256-+4rnAV2Qr29bvWRO6TnSaRZkUVCoefB3SDXc2Ye9kpE="; + types-aiobotocore-support-app = buildTypesAiobotocorePackage "support-app" "2.6.0" "sha256-CXYfdtO1TdmEz39v2AEeCTJmgiA/EF1gmaBBYGRgYV0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0b507548e4d8..59fd56754de4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14801,6 +14801,8 @@ self: super: with self; { types-aiobotocore-support + types-aiobotocore-support-app + types-aiobotocore-xray ; From 4e26dac9e6689be0db8873647372441779dcc8b9 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:31 -0700 Subject: [PATCH 336/420] python3Packages.types-aiobotocore-swf: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index e7163ec044ff..38f37eb6798c 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -702,5 +702,7 @@ rec { types-aiobotocore-support-app = buildTypesAiobotocorePackage "support-app" "2.6.0" "sha256-CXYfdtO1TdmEz39v2AEeCTJmgiA/EF1gmaBBYGRgYV0="; + types-aiobotocore-swf = buildTypesAiobotocorePackage "swf" "2.6.0" "sha256-x9cBjUe4LC9uSsFpPciZP1QlUEqfNo3xZFKUqPuVV6E="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 59fd56754de4..6e6584dc1bf9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14803,6 +14803,8 @@ self: super: with self; { types-aiobotocore-support-app + types-aiobotocore-swf + types-aiobotocore-xray ; From caae1a2581c70eeb78bc359540260d5a42c61b73 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:36 -0700 Subject: [PATCH 337/420] python3Packages.types-aiobotocore-synthetics: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 38f37eb6798c..3dd7c617148d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -704,5 +704,7 @@ rec { types-aiobotocore-swf = buildTypesAiobotocorePackage "swf" "2.6.0" "sha256-x9cBjUe4LC9uSsFpPciZP1QlUEqfNo3xZFKUqPuVV6E="; + types-aiobotocore-synthetics = buildTypesAiobotocorePackage "synthetics" "2.6.0" "sha256-Wew0A2xIYOGXzfZf3sBpHnRW/dZD1s6wHveNMwYj1s4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6e6584dc1bf9..7da2c4203397 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14805,6 +14805,8 @@ self: super: with self; { types-aiobotocore-swf + types-aiobotocore-synthetics + types-aiobotocore-xray ; From 0ce9c17eaa4b29a41aaa817111386778f341c16c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:40 -0700 Subject: [PATCH 338/420] python3Packages.types-aiobotocore-textract: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3dd7c617148d..26c6baa286fd 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -706,5 +706,7 @@ rec { types-aiobotocore-synthetics = buildTypesAiobotocorePackage "synthetics" "2.6.0" "sha256-Wew0A2xIYOGXzfZf3sBpHnRW/dZD1s6wHveNMwYj1s4="; + types-aiobotocore-textract = buildTypesAiobotocorePackage "textract" "2.6.0" "sha256-vWUMopzR+1095nN6POsHShvCKZIcUwfW11oMOJ9R94c="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7da2c4203397..60b311f864bb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14807,6 +14807,8 @@ self: super: with self; { types-aiobotocore-synthetics + types-aiobotocore-textract + types-aiobotocore-xray ; From a5292f63989b62dbd6ae845b74dce15fde8febc2 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:44 -0700 Subject: [PATCH 339/420] python3Packages.types-aiobotocore-timestream-query: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 26c6baa286fd..c76dea984697 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -708,5 +708,7 @@ rec { types-aiobotocore-textract = buildTypesAiobotocorePackage "textract" "2.6.0" "sha256-vWUMopzR+1095nN6POsHShvCKZIcUwfW11oMOJ9R94c="; + types-aiobotocore-timestream-query = buildTypesAiobotocorePackage "timestream-query" "2.6.0" "sha256-4QpCK14NogeYR9DB877zh760GEXYieiyOgepB9DZd+8="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 60b311f864bb..da156984b9a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14809,6 +14809,8 @@ self: super: with self; { types-aiobotocore-textract + types-aiobotocore-timestream-query + types-aiobotocore-xray ; From 09d3bbf899d590c4f2cc20df42494d3b6b759221 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:48 -0700 Subject: [PATCH 340/420] python3Packages.types-aiobotocore-timestream-write: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c76dea984697..4af4295e3527 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -710,5 +710,7 @@ rec { types-aiobotocore-timestream-query = buildTypesAiobotocorePackage "timestream-query" "2.6.0" "sha256-4QpCK14NogeYR9DB877zh760GEXYieiyOgepB9DZd+8="; + types-aiobotocore-timestream-write = buildTypesAiobotocorePackage "timestream-write" "2.6.0" "sha256-bBcMTJOVFq1mJQZtc9M/EMT45Xxxk2DqDgVHfM3qt3A="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index da156984b9a8..0f9aa1f535bf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14811,6 +14811,8 @@ self: super: with self; { types-aiobotocore-timestream-query + types-aiobotocore-timestream-write + types-aiobotocore-xray ; From 491a3e962d4bf5d0aaa7ae539f32a88c96807795 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:53 -0700 Subject: [PATCH 341/420] python3Packages.types-aiobotocore-tnb: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4af4295e3527..f8755e25e1ee 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -712,5 +712,7 @@ rec { types-aiobotocore-timestream-write = buildTypesAiobotocorePackage "timestream-write" "2.6.0" "sha256-bBcMTJOVFq1mJQZtc9M/EMT45Xxxk2DqDgVHfM3qt3A="; + types-aiobotocore-tnb = buildTypesAiobotocorePackage "tnb" "2.6.0" "sha256-c4Y5kilT50Ips16/YhwduNbm89gB4iLHFv8eN8T4NDM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0f9aa1f535bf..a1c2671e11d2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14813,6 +14813,8 @@ self: super: with self; { types-aiobotocore-timestream-write + types-aiobotocore-tnb + types-aiobotocore-xray ; From 716e2aa7668e1999d79f5fa2067c4b47f8f2def8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:16:57 -0700 Subject: [PATCH 342/420] python3Packages.types-aiobotocore-transcribe: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index f8755e25e1ee..4322fa0778a0 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -714,5 +714,7 @@ rec { types-aiobotocore-tnb = buildTypesAiobotocorePackage "tnb" "2.6.0" "sha256-c4Y5kilT50Ips16/YhwduNbm89gB4iLHFv8eN8T4NDM="; + types-aiobotocore-transcribe = buildTypesAiobotocorePackage "transcribe" "2.6.0" "sha256-HB1CKe9mkD0+0TdFXmdiphDUqc+4xbwBIXSu0PulBE4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a1c2671e11d2..640cf8fd9ee6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14815,6 +14815,8 @@ self: super: with self; { types-aiobotocore-tnb + types-aiobotocore-transcribe + types-aiobotocore-xray ; From 646815b84ff7c2e99ad6b4b4127845134db6042c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:01 -0700 Subject: [PATCH 343/420] python3Packages.types-aiobotocore-transfer: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4322fa0778a0..a48c0a24ec8d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -716,5 +716,7 @@ rec { types-aiobotocore-transcribe = buildTypesAiobotocorePackage "transcribe" "2.6.0" "sha256-HB1CKe9mkD0+0TdFXmdiphDUqc+4xbwBIXSu0PulBE4="; + types-aiobotocore-transfer = buildTypesAiobotocorePackage "transfer" "2.6.0" "sha256-59SvnKQ+WpAKUZNYunFywLLah1aBnF0maZrFbALXcIM="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 640cf8fd9ee6..950224dee014 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14817,6 +14817,8 @@ self: super: with self; { types-aiobotocore-transcribe + types-aiobotocore-transfer + types-aiobotocore-xray ; From 31550ff4d600be0f4f0f7ab7009a3d1b238fada8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:06 -0700 Subject: [PATCH 344/420] python3Packages.types-aiobotocore-translate: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index a48c0a24ec8d..b8642c60911d 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -718,5 +718,7 @@ rec { types-aiobotocore-transfer = buildTypesAiobotocorePackage "transfer" "2.6.0" "sha256-59SvnKQ+WpAKUZNYunFywLLah1aBnF0maZrFbALXcIM="; + types-aiobotocore-translate = buildTypesAiobotocorePackage "translate" "2.6.0" "sha256-cgxE6GYG9c4234RAiyFfF22NPHJ29oytOvLpETnjdS4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 950224dee014..e82eb95f2c82 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14819,6 +14819,8 @@ self: super: with self; { types-aiobotocore-transfer + types-aiobotocore-translate + types-aiobotocore-xray ; From ec72a975706db7356b607e805a030c98e4f7e954 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:10 -0700 Subject: [PATCH 345/420] python3Packages.types-aiobotocore-verifiedpermissions: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b8642c60911d..c12467422ea8 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -720,5 +720,7 @@ rec { types-aiobotocore-translate = buildTypesAiobotocorePackage "translate" "2.6.0" "sha256-cgxE6GYG9c4234RAiyFfF22NPHJ29oytOvLpETnjdS4="; + types-aiobotocore-verifiedpermissions = buildTypesAiobotocorePackage "verifiedpermissions" "2.6.0" "sha256-yg4zDBjgSB7JuuS2DXIUe3PFQq9stIfEJSMF1IP2BWI="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e82eb95f2c82..ea548553c51f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14821,6 +14821,8 @@ self: super: with self; { types-aiobotocore-translate + types-aiobotocore-verifiedpermissions + types-aiobotocore-xray ; From abddae99a3b1d31156242c50177f3e53687286f6 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:14 -0700 Subject: [PATCH 346/420] python3Packages.types-aiobotocore-voice-id: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index c12467422ea8..fd3035f50b01 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -722,5 +722,7 @@ rec { types-aiobotocore-verifiedpermissions = buildTypesAiobotocorePackage "verifiedpermissions" "2.6.0" "sha256-yg4zDBjgSB7JuuS2DXIUe3PFQq9stIfEJSMF1IP2BWI="; + types-aiobotocore-voice-id = buildTypesAiobotocorePackage "voice-id" "2.6.0" "sha256-Pnn3CGL5rr3MtzaakjDXmReVKXnyB76IxSnAPnKU45I="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea548553c51f..a4c0c78e3475 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14823,6 +14823,8 @@ self: super: with self; { types-aiobotocore-verifiedpermissions + types-aiobotocore-voice-id + types-aiobotocore-xray ; From 5ab09031af3bfaa0f44c12a2f26cdef85a2adf7b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:19 -0700 Subject: [PATCH 347/420] python3Packages.types-aiobotocore-vpc-lattice: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index fd3035f50b01..b380a2007d41 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -724,5 +724,7 @@ rec { types-aiobotocore-voice-id = buildTypesAiobotocorePackage "voice-id" "2.6.0" "sha256-Pnn3CGL5rr3MtzaakjDXmReVKXnyB76IxSnAPnKU45I="; + types-aiobotocore-vpc-lattice = buildTypesAiobotocorePackage "vpc-lattice" "2.6.0" "sha256-kxniFLA2e7aDKulF5z1Ap3z6wbE3eY3QVqhK+CVhrcE="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a4c0c78e3475..32768dea72b8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14825,6 +14825,8 @@ self: super: with self; { types-aiobotocore-voice-id + types-aiobotocore-vpc-lattice + types-aiobotocore-xray ; From 420eda99317cdab369bb2329f56e14386b0e4562 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:23 -0700 Subject: [PATCH 348/420] python3Packages.types-aiobotocore-waf: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index b380a2007d41..5c983770d0dc 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -726,5 +726,7 @@ rec { types-aiobotocore-vpc-lattice = buildTypesAiobotocorePackage "vpc-lattice" "2.6.0" "sha256-kxniFLA2e7aDKulF5z1Ap3z6wbE3eY3QVqhK+CVhrcE="; + types-aiobotocore-waf = buildTypesAiobotocorePackage "waf" "2.6.0" "sha256-adKf+AbPmeN57r93T36IewoiLZ+05CbpuS7NxCkQgMw="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 32768dea72b8..cf51df166005 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14827,6 +14827,8 @@ self: super: with self; { types-aiobotocore-vpc-lattice + types-aiobotocore-waf + types-aiobotocore-xray ; From 427f0e6c3a8852e617d6428ac4359231d603cf44 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:27 -0700 Subject: [PATCH 349/420] python3Packages.types-aiobotocore-waf-regional: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 5c983770d0dc..20513f16f499 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -728,5 +728,7 @@ rec { types-aiobotocore-waf = buildTypesAiobotocorePackage "waf" "2.6.0" "sha256-adKf+AbPmeN57r93T36IewoiLZ+05CbpuS7NxCkQgMw="; + types-aiobotocore-waf-regional = buildTypesAiobotocorePackage "waf-regional" "2.6.0" "sha256-56SIq8Q6B405aqKU8UMddGHyrJeFaVKZSG4ImBWBZLU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cf51df166005..ebc85ba5a81d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14829,6 +14829,8 @@ self: super: with self; { types-aiobotocore-waf + types-aiobotocore-waf-regional + types-aiobotocore-xray ; From 47f9931dfc80b1262dd3892209bccd40d310ac7e Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:32 -0700 Subject: [PATCH 350/420] python3Packages.types-aiobotocore-wafv2: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 20513f16f499..90bee8005ce5 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -730,5 +730,7 @@ rec { types-aiobotocore-waf-regional = buildTypesAiobotocorePackage "waf-regional" "2.6.0" "sha256-56SIq8Q6B405aqKU8UMddGHyrJeFaVKZSG4ImBWBZLU="; + types-aiobotocore-wafv2 = buildTypesAiobotocorePackage "wafv2" "2.6.0" "sha256-nAGK0tN42UhDUmpztGeAPRS5FuuTt+LugQmcgkR0oLA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ebc85ba5a81d..9fb8e1e2f166 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14831,6 +14831,8 @@ self: super: with self; { types-aiobotocore-waf-regional + types-aiobotocore-wafv2 + types-aiobotocore-xray ; From 876ea5891980e63603083df50f99d6ce0cb49f4c Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:36 -0700 Subject: [PATCH 351/420] python3Packages.types-aiobotocore-wellarchitected: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 90bee8005ce5..9cc1f2234cf3 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -732,5 +732,7 @@ rec { types-aiobotocore-wafv2 = buildTypesAiobotocorePackage "wafv2" "2.6.0" "sha256-nAGK0tN42UhDUmpztGeAPRS5FuuTt+LugQmcgkR0oLA="; + types-aiobotocore-wellarchitected = buildTypesAiobotocorePackage "wellarchitected" "2.6.0" "sha256-p/2uqdRwKgsS2EUCr8ZLds6WHUjVQz8mEv35qcyMTYA="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9fb8e1e2f166..23c8e8298f70 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14833,6 +14833,8 @@ self: super: with self; { types-aiobotocore-wafv2 + types-aiobotocore-wellarchitected + types-aiobotocore-xray ; From 3b781596f4110433c110b516814f3925b8fd85b8 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:40 -0700 Subject: [PATCH 352/420] python3Packages.types-aiobotocore-wisdom: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 9cc1f2234cf3..05533766cc1e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -734,5 +734,7 @@ rec { types-aiobotocore-wellarchitected = buildTypesAiobotocorePackage "wellarchitected" "2.6.0" "sha256-p/2uqdRwKgsS2EUCr8ZLds6WHUjVQz8mEv35qcyMTYA="; + types-aiobotocore-wisdom = buildTypesAiobotocorePackage "wisdom" "2.6.0" "sha256-EInqI5EqriiI2L/tdQiy3/jY8tnZ6+QOk9PdEyDuSj4="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23c8e8298f70..53d43e2142e2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14835,6 +14835,8 @@ self: super: with self; { types-aiobotocore-wellarchitected + types-aiobotocore-wisdom + types-aiobotocore-xray ; From ef1c25da89a622cb7ac8574b29d1e68f1306152a Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:44 -0700 Subject: [PATCH 353/420] python3Packages.types-aiobotocore-workdocs: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 05533766cc1e..d3d5f72580bf 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -736,5 +736,7 @@ rec { types-aiobotocore-wisdom = buildTypesAiobotocorePackage "wisdom" "2.6.0" "sha256-EInqI5EqriiI2L/tdQiy3/jY8tnZ6+QOk9PdEyDuSj4="; + types-aiobotocore-workdocs = buildTypesAiobotocorePackage "workdocs" "2.6.0" "sha256-cNegCM7a4QlI+NLzIRIoGHYzQqbFkNRKqDKLOqE3OUY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 53d43e2142e2..9aebfa534511 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14837,6 +14837,8 @@ self: super: with self; { types-aiobotocore-wisdom + types-aiobotocore-workdocs + types-aiobotocore-xray ; From ed48eed46fcd72bf3099df56112446e4f4042233 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:48 -0700 Subject: [PATCH 354/420] python3Packages.types-aiobotocore-worklink: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index d3d5f72580bf..2970101e004e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -738,5 +738,7 @@ rec { types-aiobotocore-workdocs = buildTypesAiobotocorePackage "workdocs" "2.6.0" "sha256-cNegCM7a4QlI+NLzIRIoGHYzQqbFkNRKqDKLOqE3OUY="; + types-aiobotocore-worklink = buildTypesAiobotocorePackage "worklink" "2.6.0" "sha256-hMPU0wmTi0BQ+AWo4T6DIOl6FrAQbzdal8rcPoY3wP0="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9aebfa534511..0ab764c1dc2d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14839,6 +14839,8 @@ self: super: with self; { types-aiobotocore-workdocs + types-aiobotocore-worklink + types-aiobotocore-xray ; From 16ee2d5ac91d5eb074c3a996ba504ca904f77a15 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:53 -0700 Subject: [PATCH 355/420] python3Packages.types-aiobotocore-workmail: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 2970101e004e..3a3ba231cecf 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -740,5 +740,7 @@ rec { types-aiobotocore-worklink = buildTypesAiobotocorePackage "worklink" "2.6.0" "sha256-hMPU0wmTi0BQ+AWo4T6DIOl6FrAQbzdal8rcPoY3wP0="; + types-aiobotocore-workmail = buildTypesAiobotocorePackage "workmail" "2.6.0" "sha256-W/kHZMLFQ7kv8i/3urxbjdXc7RorMyy5joJNtFPAhVU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0ab764c1dc2d..47b5a3f2e772 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14841,6 +14841,8 @@ self: super: with self; { types-aiobotocore-worklink + types-aiobotocore-workmail + types-aiobotocore-xray ; From c9f985e97ff9e752d0eb26037f68dba50ae33243 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:17:57 -0700 Subject: [PATCH 356/420] python3Packages.types-aiobotocore-workmailmessageflow: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3a3ba231cecf..4913416a680e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -742,5 +742,7 @@ rec { types-aiobotocore-workmail = buildTypesAiobotocorePackage "workmail" "2.6.0" "sha256-W/kHZMLFQ7kv8i/3urxbjdXc7RorMyy5joJNtFPAhVU="; + types-aiobotocore-workmailmessageflow = buildTypesAiobotocorePackage "workmailmessageflow" "2.6.0" "sha256-Mc3h0CSmJRoV+ncwhtd4Tu5LSoasWqK8V9hXK5+XYfs="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47b5a3f2e772..cda763f34d06 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14843,6 +14843,8 @@ self: super: with self; { types-aiobotocore-workmail + types-aiobotocore-workmailmessageflow + types-aiobotocore-xray ; From 73231b9e35f19e10029621e2af1f822badc53e0b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:18:01 -0700 Subject: [PATCH 357/420] python3Packages.types-aiobotocore-workspaces: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 4913416a680e..3afa74be510f 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -744,5 +744,7 @@ rec { types-aiobotocore-workmailmessageflow = buildTypesAiobotocorePackage "workmailmessageflow" "2.6.0" "sha256-Mc3h0CSmJRoV+ncwhtd4Tu5LSoasWqK8V9hXK5+XYfs="; + types-aiobotocore-workspaces = buildTypesAiobotocorePackage "workspaces" "2.6.0" "sha256-xtsxrIzhjJSoGqd1fEgXP55bRtDsJTtdoWn8eooHCmY="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cda763f34d06..fb20ddf50924 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14845,6 +14845,8 @@ self: super: with self; { types-aiobotocore-workmailmessageflow + types-aiobotocore-workspaces + types-aiobotocore-xray ; From 4a56b7986fd372f8217b47139480918cacdcbf2b Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 04:18:05 -0700 Subject: [PATCH 358/420] python3Packages.types-aiobotocore-workspaces-web: init at 2.6.0 --- .../python-modules/types-aiobotocore-packages/default.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix index 3afa74be510f..7bc93024121e 100644 --- a/pkgs/development/python-modules/types-aiobotocore-packages/default.nix +++ b/pkgs/development/python-modules/types-aiobotocore-packages/default.nix @@ -746,5 +746,7 @@ rec { types-aiobotocore-workspaces = buildTypesAiobotocorePackage "workspaces" "2.6.0" "sha256-xtsxrIzhjJSoGqd1fEgXP55bRtDsJTtdoWn8eooHCmY="; + types-aiobotocore-workspaces-web = buildTypesAiobotocorePackage "workspaces-web" "2.6.0" "sha256-J3lsLnwcttamV4NroDuXz9EupXrsoN/SumKrykQkwVU="; + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fb20ddf50924..6e41d69aaa00 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14847,6 +14847,8 @@ self: super: with self; { types-aiobotocore-workspaces + types-aiobotocore-workspaces-web + types-aiobotocore-xray ; From 64fe49da414ea7a2e44dec29f05eca8734c08dc1 Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Tue, 3 Oct 2023 05:04:21 -0700 Subject: [PATCH 359/420] python3Packages.types-aiobotocore: init at 2.6.0 --- .../types-aiobotocore/default.nix | 1824 +++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 1826 insertions(+) create mode 100644 pkgs/development/python-modules/types-aiobotocore/default.nix diff --git a/pkgs/development/python-modules/types-aiobotocore/default.nix b/pkgs/development/python-modules/types-aiobotocore/default.nix new file mode 100644 index 000000000000..638a00c60903 --- /dev/null +++ b/pkgs/development/python-modules/types-aiobotocore/default.nix @@ -0,0 +1,1824 @@ +{ lib +, buildPythonPackage +, fetchPypi +, setuptools +, wheel +, botocore-stubs +, typing-extensions +, types-aiobotocore-accessanalyzer +, types-aiobotocore-account +, types-aiobotocore-acm +, types-aiobotocore-acm-pca +, aiobotocore +, botocore +, types-aiobotocore-alexaforbusiness +, types-aiobotocore-amp +, types-aiobotocore-amplify +, types-aiobotocore-amplifybackend +, types-aiobotocore-amplifyuibuilder +, types-aiobotocore-apigateway +, types-aiobotocore-apigatewaymanagementapi +, types-aiobotocore-apigatewayv2 +, types-aiobotocore-appconfig +, types-aiobotocore-appconfigdata +, types-aiobotocore-appfabric +, types-aiobotocore-appflow +, types-aiobotocore-appintegrations +, types-aiobotocore-application-autoscaling +, types-aiobotocore-application-insights +, types-aiobotocore-applicationcostprofiler +, types-aiobotocore-appmesh +, types-aiobotocore-apprunner +, types-aiobotocore-appstream +, types-aiobotocore-appsync +, types-aiobotocore-arc-zonal-shift +, types-aiobotocore-athena +, types-aiobotocore-auditmanager +, types-aiobotocore-autoscaling +, types-aiobotocore-autoscaling-plans +, types-aiobotocore-backup +, types-aiobotocore-backup-gateway +, types-aiobotocore-backupstorage +, types-aiobotocore-batch +, types-aiobotocore-billingconductor +, types-aiobotocore-braket +, types-aiobotocore-budgets +, types-aiobotocore-ce +, types-aiobotocore-chime +, types-aiobotocore-chime-sdk-identity +, types-aiobotocore-chime-sdk-media-pipelines +, types-aiobotocore-chime-sdk-meetings +, types-aiobotocore-chime-sdk-messaging +, types-aiobotocore-chime-sdk-voice +, types-aiobotocore-cleanrooms +, types-aiobotocore-cloud9 +, types-aiobotocore-cloudcontrol +, types-aiobotocore-clouddirectory +, types-aiobotocore-cloudformation +, types-aiobotocore-cloudfront +, types-aiobotocore-cloudhsm +, types-aiobotocore-cloudhsmv2 +, types-aiobotocore-cloudsearch +, types-aiobotocore-cloudsearchdomain +, types-aiobotocore-cloudtrail +, types-aiobotocore-cloudtrail-data +, types-aiobotocore-cloudwatch +, types-aiobotocore-codeartifact +, types-aiobotocore-codebuild +, types-aiobotocore-codecatalyst +, types-aiobotocore-codecommit +, types-aiobotocore-codedeploy +, types-aiobotocore-codeguru-reviewer +, types-aiobotocore-codeguru-security +, types-aiobotocore-codeguruprofiler +, types-aiobotocore-codepipeline +, types-aiobotocore-codestar +, types-aiobotocore-codestar-connections +, types-aiobotocore-codestar-notifications +, types-aiobotocore-cognito-identity +, types-aiobotocore-cognito-idp +, types-aiobotocore-cognito-sync +, types-aiobotocore-comprehend +, types-aiobotocore-comprehendmedical +, types-aiobotocore-compute-optimizer +, types-aiobotocore-config +, types-aiobotocore-connect +, types-aiobotocore-connect-contact-lens +, types-aiobotocore-connectcampaigns +, types-aiobotocore-connectcases +, types-aiobotocore-connectparticipant +, types-aiobotocore-controltower +, types-aiobotocore-cur +, types-aiobotocore-customer-profiles +, types-aiobotocore-databrew +, types-aiobotocore-dataexchange +, types-aiobotocore-datapipeline +, types-aiobotocore-datasync +, types-aiobotocore-dax +, types-aiobotocore-detective +, types-aiobotocore-devicefarm +, types-aiobotocore-devops-guru +, types-aiobotocore-directconnect +, types-aiobotocore-discovery +, types-aiobotocore-dlm +, types-aiobotocore-dms +, types-aiobotocore-docdb +, types-aiobotocore-docdb-elastic +, types-aiobotocore-drs +, types-aiobotocore-ds +, types-aiobotocore-dynamodb +, types-aiobotocore-dynamodbstreams +, types-aiobotocore-ebs +, types-aiobotocore-ec2 +, types-aiobotocore-ec2-instance-connect +, types-aiobotocore-ecr +, types-aiobotocore-ecr-public +, types-aiobotocore-ecs +, types-aiobotocore-efs +, types-aiobotocore-eks +, types-aiobotocore-elastic-inference +, types-aiobotocore-elasticache +, types-aiobotocore-elasticbeanstalk +, types-aiobotocore-elastictranscoder +, types-aiobotocore-elb +, types-aiobotocore-elbv2 +, types-aiobotocore-emr +, types-aiobotocore-emr-containers +, types-aiobotocore-emr-serverless +, types-aiobotocore-entityresolution +, types-aiobotocore-es +, types-aiobotocore-events +, types-aiobotocore-evidently +, types-aiobotocore-finspace +, types-aiobotocore-finspace-data +, types-aiobotocore-firehose +, types-aiobotocore-fis +, types-aiobotocore-fms +, types-aiobotocore-forecast +, types-aiobotocore-forecastquery +, types-aiobotocore-frauddetector +, types-aiobotocore-fsx +, types-aiobotocore-gamelift +, types-aiobotocore-gamesparks +, types-aiobotocore-glacier +, types-aiobotocore-globalaccelerator +, types-aiobotocore-glue +, types-aiobotocore-grafana +, types-aiobotocore-greengrass +, types-aiobotocore-greengrassv2 +, types-aiobotocore-groundstation +, types-aiobotocore-guardduty +, types-aiobotocore-health +, types-aiobotocore-healthlake +, types-aiobotocore-honeycode +, types-aiobotocore-iam +, types-aiobotocore-identitystore +, types-aiobotocore-imagebuilder +, types-aiobotocore-importexport +, types-aiobotocore-inspector +, types-aiobotocore-inspector2 +, types-aiobotocore-internetmonitor +, types-aiobotocore-iot +, types-aiobotocore-iot-data +, types-aiobotocore-iot-jobs-data +, types-aiobotocore-iot-roborunner +, types-aiobotocore-iot1click-devices +, types-aiobotocore-iot1click-projects +, types-aiobotocore-iotanalytics +, types-aiobotocore-iotdeviceadvisor +, types-aiobotocore-iotevents +, types-aiobotocore-iotevents-data +, types-aiobotocore-iotfleethub +, types-aiobotocore-iotfleetwise +, types-aiobotocore-iotsecuretunneling +, types-aiobotocore-iotsitewise +, types-aiobotocore-iotthingsgraph +, types-aiobotocore-iottwinmaker +, types-aiobotocore-iotwireless +, types-aiobotocore-ivs +, types-aiobotocore-ivs-realtime +, types-aiobotocore-ivschat +, types-aiobotocore-kafka +, types-aiobotocore-kafkaconnect +, types-aiobotocore-kendra +, types-aiobotocore-kendra-ranking +, types-aiobotocore-keyspaces +, types-aiobotocore-kinesis +, types-aiobotocore-kinesis-video-archived-media +, types-aiobotocore-kinesis-video-media +, types-aiobotocore-kinesis-video-signaling +, types-aiobotocore-kinesis-video-webrtc-storage +, types-aiobotocore-kinesisanalytics +, types-aiobotocore-kinesisanalyticsv2 +, types-aiobotocore-kinesisvideo +, types-aiobotocore-kms +, types-aiobotocore-lakeformation +, types-aiobotocore-lambda +, types-aiobotocore-lex-models +, types-aiobotocore-lex-runtime +, types-aiobotocore-lexv2-models +, types-aiobotocore-lexv2-runtime +, types-aiobotocore-license-manager +, types-aiobotocore-license-manager-linux-subscriptions +, types-aiobotocore-license-manager-user-subscriptions +, types-aiobotocore-lightsail +, types-aiobotocore-location +, types-aiobotocore-logs +, types-aiobotocore-lookoutequipment +, types-aiobotocore-lookoutmetrics +, types-aiobotocore-lookoutvision +, types-aiobotocore-m2 +, types-aiobotocore-machinelearning +, types-aiobotocore-macie +, types-aiobotocore-macie2 +, types-aiobotocore-managedblockchain +, types-aiobotocore-managedblockchain-query +, types-aiobotocore-marketplace-catalog +, types-aiobotocore-marketplace-entitlement +, types-aiobotocore-marketplacecommerceanalytics +, types-aiobotocore-mediaconnect +, types-aiobotocore-mediaconvert +, types-aiobotocore-medialive +, types-aiobotocore-mediapackage +, types-aiobotocore-mediapackage-vod +, types-aiobotocore-mediapackagev2 +, types-aiobotocore-mediastore +, types-aiobotocore-mediastore-data +, types-aiobotocore-mediatailor +, types-aiobotocore-medical-imaging +, types-aiobotocore-memorydb +, types-aiobotocore-meteringmarketplace +, types-aiobotocore-mgh +, types-aiobotocore-mgn +, types-aiobotocore-migration-hub-refactor-spaces +, types-aiobotocore-migrationhub-config +, types-aiobotocore-migrationhuborchestrator +, types-aiobotocore-migrationhubstrategy +, types-aiobotocore-mobile +, types-aiobotocore-mq +, types-aiobotocore-mturk +, types-aiobotocore-mwaa +, types-aiobotocore-neptune +, types-aiobotocore-network-firewall +, types-aiobotocore-networkmanager +, types-aiobotocore-nimble +, types-aiobotocore-oam +, types-aiobotocore-omics +, types-aiobotocore-opensearch +, types-aiobotocore-opensearchserverless +, types-aiobotocore-opsworks +, types-aiobotocore-opsworkscm +, types-aiobotocore-organizations +, types-aiobotocore-osis +, types-aiobotocore-outposts +, types-aiobotocore-panorama +, types-aiobotocore-payment-cryptography +, types-aiobotocore-payment-cryptography-data +, types-aiobotocore-personalize +, types-aiobotocore-personalize-events +, types-aiobotocore-personalize-runtime +, types-aiobotocore-pi +, types-aiobotocore-pinpoint +, types-aiobotocore-pinpoint-email +, types-aiobotocore-pinpoint-sms-voice +, types-aiobotocore-pinpoint-sms-voice-v2 +, types-aiobotocore-pipes +, types-aiobotocore-polly +, types-aiobotocore-pricing +, types-aiobotocore-privatenetworks +, types-aiobotocore-proton +, types-aiobotocore-qldb +, types-aiobotocore-qldb-session +, types-aiobotocore-quicksight +, types-aiobotocore-ram +, types-aiobotocore-rbin +, types-aiobotocore-rds +, types-aiobotocore-rds-data +, types-aiobotocore-redshift +, types-aiobotocore-redshift-data +, types-aiobotocore-redshift-serverless +, types-aiobotocore-rekognition +, types-aiobotocore-resiliencehub +, types-aiobotocore-resource-explorer-2 +, types-aiobotocore-resource-groups +, types-aiobotocore-resourcegroupstaggingapi +, types-aiobotocore-robomaker +, types-aiobotocore-rolesanywhere +, types-aiobotocore-route53 +, types-aiobotocore-route53-recovery-cluster +, types-aiobotocore-route53-recovery-control-config +, types-aiobotocore-route53-recovery-readiness +, types-aiobotocore-route53domains +, types-aiobotocore-route53resolver +, types-aiobotocore-rum +, types-aiobotocore-s3 +, types-aiobotocore-s3control +, types-aiobotocore-s3outposts +, types-aiobotocore-sagemaker +, types-aiobotocore-sagemaker-a2i-runtime +, types-aiobotocore-sagemaker-edge +, types-aiobotocore-sagemaker-featurestore-runtime +, types-aiobotocore-sagemaker-geospatial +, types-aiobotocore-sagemaker-metrics +, types-aiobotocore-sagemaker-runtime +, types-aiobotocore-savingsplans +, types-aiobotocore-scheduler +, types-aiobotocore-schemas +, types-aiobotocore-sdb +, types-aiobotocore-secretsmanager +, types-aiobotocore-securityhub +, types-aiobotocore-securitylake +, types-aiobotocore-serverlessrepo +, types-aiobotocore-service-quotas +, types-aiobotocore-servicecatalog +, types-aiobotocore-servicecatalog-appregistry +, types-aiobotocore-servicediscovery +, types-aiobotocore-ses +, types-aiobotocore-sesv2 +, types-aiobotocore-shield +, types-aiobotocore-signer +, types-aiobotocore-simspaceweaver +, types-aiobotocore-sms +, types-aiobotocore-sms-voice +, types-aiobotocore-snow-device-management +, types-aiobotocore-snowball +, types-aiobotocore-sns +, types-aiobotocore-sqs +, types-aiobotocore-ssm +, types-aiobotocore-ssm-contacts +, types-aiobotocore-ssm-incidents +, types-aiobotocore-ssm-sap +, types-aiobotocore-sso +, types-aiobotocore-sso-admin +, types-aiobotocore-sso-oidc +, types-aiobotocore-stepfunctions +, types-aiobotocore-storagegateway +, types-aiobotocore-sts +, types-aiobotocore-support +, types-aiobotocore-support-app +, types-aiobotocore-swf +, types-aiobotocore-synthetics +, types-aiobotocore-textract +, types-aiobotocore-timestream-query +, types-aiobotocore-timestream-write +, types-aiobotocore-tnb +, types-aiobotocore-transcribe +, types-aiobotocore-transfer +, types-aiobotocore-translate +, types-aiobotocore-verifiedpermissions +, types-aiobotocore-voice-id +, types-aiobotocore-vpc-lattice +, types-aiobotocore-waf +, types-aiobotocore-waf-regional +, types-aiobotocore-wafv2 +, types-aiobotocore-wellarchitected +, types-aiobotocore-wisdom +, types-aiobotocore-workdocs +, types-aiobotocore-worklink +, types-aiobotocore-workmail +, types-aiobotocore-workmailmessageflow +, types-aiobotocore-workspaces +, types-aiobotocore-workspaces-web +, types-aiobotocore-xray +}: + +buildPythonPackage rec { + pname = "types-aiobotocore"; + version = "2.6.0"; + pyproject = true; + + src = fetchPypi { + inherit pname version; + hash = "sha256-GF3YDuyhnEx0JpOxU/tRAnFu+98p0TF5NCU1CXnR2bE="; + }; + + nativeBuildInputs = [ + setuptools + wheel + ]; + + propagatedBuildInputs = [ + botocore-stubs + typing-extensions + ]; + + passthru.optional-dependencies = { + accessanalyzer = [ + types-aiobotocore-accessanalyzer + ]; + account = [ + types-aiobotocore-account + ]; + acm = [ + types-aiobotocore-acm + ]; + acm-pca = [ + types-aiobotocore-acm-pca + ]; + aiobotocore = [ + aiobotocore + botocore + ]; + alexaforbusiness = [ + types-aiobotocore-alexaforbusiness + ]; + all = [ + types-aiobotocore-accessanalyzer + types-aiobotocore-account + types-aiobotocore-acm + types-aiobotocore-acm-pca + types-aiobotocore-alexaforbusiness + types-aiobotocore-amp + types-aiobotocore-amplify + types-aiobotocore-amplifybackend + types-aiobotocore-amplifyuibuilder + types-aiobotocore-apigateway + types-aiobotocore-apigatewaymanagementapi + types-aiobotocore-apigatewayv2 + types-aiobotocore-appconfig + types-aiobotocore-appconfigdata + types-aiobotocore-appfabric + types-aiobotocore-appflow + types-aiobotocore-appintegrations + types-aiobotocore-application-autoscaling + types-aiobotocore-application-insights + types-aiobotocore-applicationcostprofiler + types-aiobotocore-appmesh + types-aiobotocore-apprunner + types-aiobotocore-appstream + types-aiobotocore-appsync + types-aiobotocore-arc-zonal-shift + types-aiobotocore-athena + types-aiobotocore-auditmanager + types-aiobotocore-autoscaling + types-aiobotocore-autoscaling-plans + types-aiobotocore-backup + types-aiobotocore-backup-gateway + types-aiobotocore-backupstorage + types-aiobotocore-batch + types-aiobotocore-billingconductor + types-aiobotocore-braket + types-aiobotocore-budgets + types-aiobotocore-ce + types-aiobotocore-chime + types-aiobotocore-chime-sdk-identity + types-aiobotocore-chime-sdk-media-pipelines + types-aiobotocore-chime-sdk-meetings + types-aiobotocore-chime-sdk-messaging + types-aiobotocore-chime-sdk-voice + types-aiobotocore-cleanrooms + types-aiobotocore-cloud9 + types-aiobotocore-cloudcontrol + types-aiobotocore-clouddirectory + types-aiobotocore-cloudformation + types-aiobotocore-cloudfront + types-aiobotocore-cloudhsm + types-aiobotocore-cloudhsmv2 + types-aiobotocore-cloudsearch + types-aiobotocore-cloudsearchdomain + types-aiobotocore-cloudtrail + types-aiobotocore-cloudtrail-data + types-aiobotocore-cloudwatch + types-aiobotocore-codeartifact + types-aiobotocore-codebuild + types-aiobotocore-codecatalyst + types-aiobotocore-codecommit + types-aiobotocore-codedeploy + types-aiobotocore-codeguru-reviewer + types-aiobotocore-codeguru-security + types-aiobotocore-codeguruprofiler + types-aiobotocore-codepipeline + types-aiobotocore-codestar + types-aiobotocore-codestar-connections + types-aiobotocore-codestar-notifications + types-aiobotocore-cognito-identity + types-aiobotocore-cognito-idp + types-aiobotocore-cognito-sync + types-aiobotocore-comprehend + types-aiobotocore-comprehendmedical + types-aiobotocore-compute-optimizer + types-aiobotocore-config + types-aiobotocore-connect + types-aiobotocore-connect-contact-lens + types-aiobotocore-connectcampaigns + types-aiobotocore-connectcases + types-aiobotocore-connectparticipant + types-aiobotocore-controltower + types-aiobotocore-cur + types-aiobotocore-customer-profiles + types-aiobotocore-databrew + types-aiobotocore-dataexchange + types-aiobotocore-datapipeline + types-aiobotocore-datasync + types-aiobotocore-dax + types-aiobotocore-detective + types-aiobotocore-devicefarm + types-aiobotocore-devops-guru + types-aiobotocore-directconnect + types-aiobotocore-discovery + types-aiobotocore-dlm + types-aiobotocore-dms + types-aiobotocore-docdb + types-aiobotocore-docdb-elastic + types-aiobotocore-drs + types-aiobotocore-ds + types-aiobotocore-dynamodb + types-aiobotocore-dynamodbstreams + types-aiobotocore-ebs + types-aiobotocore-ec2 + types-aiobotocore-ec2-instance-connect + types-aiobotocore-ecr + types-aiobotocore-ecr-public + types-aiobotocore-ecs + types-aiobotocore-efs + types-aiobotocore-eks + types-aiobotocore-elastic-inference + types-aiobotocore-elasticache + types-aiobotocore-elasticbeanstalk + types-aiobotocore-elastictranscoder + types-aiobotocore-elb + types-aiobotocore-elbv2 + types-aiobotocore-emr + types-aiobotocore-emr-containers + types-aiobotocore-emr-serverless + types-aiobotocore-entityresolution + types-aiobotocore-es + types-aiobotocore-events + types-aiobotocore-evidently + types-aiobotocore-finspace + types-aiobotocore-finspace-data + types-aiobotocore-firehose + types-aiobotocore-fis + types-aiobotocore-fms + types-aiobotocore-forecast + types-aiobotocore-forecastquery + types-aiobotocore-frauddetector + types-aiobotocore-fsx + types-aiobotocore-gamelift + types-aiobotocore-gamesparks + types-aiobotocore-glacier + types-aiobotocore-globalaccelerator + types-aiobotocore-glue + types-aiobotocore-grafana + types-aiobotocore-greengrass + types-aiobotocore-greengrassv2 + types-aiobotocore-groundstation + types-aiobotocore-guardduty + types-aiobotocore-health + types-aiobotocore-healthlake + types-aiobotocore-honeycode + types-aiobotocore-iam + types-aiobotocore-identitystore + types-aiobotocore-imagebuilder + types-aiobotocore-importexport + types-aiobotocore-inspector + types-aiobotocore-inspector2 + types-aiobotocore-internetmonitor + types-aiobotocore-iot + types-aiobotocore-iot-data + types-aiobotocore-iot-jobs-data + types-aiobotocore-iot-roborunner + types-aiobotocore-iot1click-devices + types-aiobotocore-iot1click-projects + types-aiobotocore-iotanalytics + types-aiobotocore-iotdeviceadvisor + types-aiobotocore-iotevents + types-aiobotocore-iotevents-data + types-aiobotocore-iotfleethub + types-aiobotocore-iotfleetwise + types-aiobotocore-iotsecuretunneling + types-aiobotocore-iotsitewise + types-aiobotocore-iotthingsgraph + types-aiobotocore-iottwinmaker + types-aiobotocore-iotwireless + types-aiobotocore-ivs + types-aiobotocore-ivs-realtime + types-aiobotocore-ivschat + types-aiobotocore-kafka + types-aiobotocore-kafkaconnect + types-aiobotocore-kendra + types-aiobotocore-kendra-ranking + types-aiobotocore-keyspaces + types-aiobotocore-kinesis + types-aiobotocore-kinesis-video-archived-media + types-aiobotocore-kinesis-video-media + types-aiobotocore-kinesis-video-signaling + types-aiobotocore-kinesis-video-webrtc-storage + types-aiobotocore-kinesisanalytics + types-aiobotocore-kinesisanalyticsv2 + types-aiobotocore-kinesisvideo + types-aiobotocore-kms + types-aiobotocore-lakeformation + types-aiobotocore-lambda + types-aiobotocore-lex-models + types-aiobotocore-lex-runtime + types-aiobotocore-lexv2-models + types-aiobotocore-lexv2-runtime + types-aiobotocore-license-manager + types-aiobotocore-license-manager-linux-subscriptions + types-aiobotocore-license-manager-user-subscriptions + types-aiobotocore-lightsail + types-aiobotocore-location + types-aiobotocore-logs + types-aiobotocore-lookoutequipment + types-aiobotocore-lookoutmetrics + types-aiobotocore-lookoutvision + types-aiobotocore-m2 + types-aiobotocore-machinelearning + types-aiobotocore-macie + types-aiobotocore-macie2 + types-aiobotocore-managedblockchain + types-aiobotocore-managedblockchain-query + types-aiobotocore-marketplace-catalog + types-aiobotocore-marketplace-entitlement + types-aiobotocore-marketplacecommerceanalytics + types-aiobotocore-mediaconnect + types-aiobotocore-mediaconvert + types-aiobotocore-medialive + types-aiobotocore-mediapackage + types-aiobotocore-mediapackage-vod + types-aiobotocore-mediapackagev2 + types-aiobotocore-mediastore + types-aiobotocore-mediastore-data + types-aiobotocore-mediatailor + types-aiobotocore-medical-imaging + types-aiobotocore-memorydb + types-aiobotocore-meteringmarketplace + types-aiobotocore-mgh + types-aiobotocore-mgn + types-aiobotocore-migration-hub-refactor-spaces + types-aiobotocore-migrationhub-config + types-aiobotocore-migrationhuborchestrator + types-aiobotocore-migrationhubstrategy + types-aiobotocore-mobile + types-aiobotocore-mq + types-aiobotocore-mturk + types-aiobotocore-mwaa + types-aiobotocore-neptune + types-aiobotocore-network-firewall + types-aiobotocore-networkmanager + types-aiobotocore-nimble + types-aiobotocore-oam + types-aiobotocore-omics + types-aiobotocore-opensearch + types-aiobotocore-opensearchserverless + types-aiobotocore-opsworks + types-aiobotocore-opsworkscm + types-aiobotocore-organizations + types-aiobotocore-osis + types-aiobotocore-outposts + types-aiobotocore-panorama + types-aiobotocore-payment-cryptography + types-aiobotocore-payment-cryptography-data + types-aiobotocore-personalize + types-aiobotocore-personalize-events + types-aiobotocore-personalize-runtime + types-aiobotocore-pi + types-aiobotocore-pinpoint + types-aiobotocore-pinpoint-email + types-aiobotocore-pinpoint-sms-voice + types-aiobotocore-pinpoint-sms-voice-v2 + types-aiobotocore-pipes + types-aiobotocore-polly + types-aiobotocore-pricing + types-aiobotocore-privatenetworks + types-aiobotocore-proton + types-aiobotocore-qldb + types-aiobotocore-qldb-session + types-aiobotocore-quicksight + types-aiobotocore-ram + types-aiobotocore-rbin + types-aiobotocore-rds + types-aiobotocore-rds-data + types-aiobotocore-redshift + types-aiobotocore-redshift-data + types-aiobotocore-redshift-serverless + types-aiobotocore-rekognition + types-aiobotocore-resiliencehub + types-aiobotocore-resource-explorer-2 + types-aiobotocore-resource-groups + types-aiobotocore-resourcegroupstaggingapi + types-aiobotocore-robomaker + types-aiobotocore-rolesanywhere + types-aiobotocore-route53 + types-aiobotocore-route53-recovery-cluster + types-aiobotocore-route53-recovery-control-config + types-aiobotocore-route53-recovery-readiness + types-aiobotocore-route53domains + types-aiobotocore-route53resolver + types-aiobotocore-rum + types-aiobotocore-s3 + types-aiobotocore-s3control + types-aiobotocore-s3outposts + types-aiobotocore-sagemaker + types-aiobotocore-sagemaker-a2i-runtime + types-aiobotocore-sagemaker-edge + types-aiobotocore-sagemaker-featurestore-runtime + types-aiobotocore-sagemaker-geospatial + types-aiobotocore-sagemaker-metrics + types-aiobotocore-sagemaker-runtime + types-aiobotocore-savingsplans + types-aiobotocore-scheduler + types-aiobotocore-schemas + types-aiobotocore-sdb + types-aiobotocore-secretsmanager + types-aiobotocore-securityhub + types-aiobotocore-securitylake + types-aiobotocore-serverlessrepo + types-aiobotocore-service-quotas + types-aiobotocore-servicecatalog + types-aiobotocore-servicecatalog-appregistry + types-aiobotocore-servicediscovery + types-aiobotocore-ses + types-aiobotocore-sesv2 + types-aiobotocore-shield + types-aiobotocore-signer + types-aiobotocore-simspaceweaver + types-aiobotocore-sms + types-aiobotocore-sms-voice + types-aiobotocore-snow-device-management + types-aiobotocore-snowball + types-aiobotocore-sns + types-aiobotocore-sqs + types-aiobotocore-ssm + types-aiobotocore-ssm-contacts + types-aiobotocore-ssm-incidents + types-aiobotocore-ssm-sap + types-aiobotocore-sso + types-aiobotocore-sso-admin + types-aiobotocore-sso-oidc + types-aiobotocore-stepfunctions + types-aiobotocore-storagegateway + types-aiobotocore-sts + types-aiobotocore-support + types-aiobotocore-support-app + types-aiobotocore-swf + types-aiobotocore-synthetics + types-aiobotocore-textract + types-aiobotocore-timestream-query + types-aiobotocore-timestream-write + types-aiobotocore-tnb + types-aiobotocore-transcribe + types-aiobotocore-transfer + types-aiobotocore-translate + types-aiobotocore-verifiedpermissions + types-aiobotocore-voice-id + types-aiobotocore-vpc-lattice + types-aiobotocore-waf + types-aiobotocore-waf-regional + types-aiobotocore-wafv2 + types-aiobotocore-wellarchitected + types-aiobotocore-wisdom + types-aiobotocore-workdocs + types-aiobotocore-worklink + types-aiobotocore-workmail + types-aiobotocore-workmailmessageflow + types-aiobotocore-workspaces + types-aiobotocore-workspaces-web + types-aiobotocore-xray + ]; + amp = [ + types-aiobotocore-amp + ]; + amplify = [ + types-aiobotocore-amplify + ]; + amplifybackend = [ + types-aiobotocore-amplifybackend + ]; + amplifyuibuilder = [ + types-aiobotocore-amplifyuibuilder + ]; + apigateway = [ + types-aiobotocore-apigateway + ]; + apigatewaymanagementapi = [ + types-aiobotocore-apigatewaymanagementapi + ]; + apigatewayv2 = [ + types-aiobotocore-apigatewayv2 + ]; + appconfig = [ + types-aiobotocore-appconfig + ]; + appconfigdata = [ + types-aiobotocore-appconfigdata + ]; + appfabric = [ + types-aiobotocore-appfabric + ]; + appflow = [ + types-aiobotocore-appflow + ]; + appintegrations = [ + types-aiobotocore-appintegrations + ]; + application-autoscaling = [ + types-aiobotocore-application-autoscaling + ]; + application-insights = [ + types-aiobotocore-application-insights + ]; + applicationcostprofiler = [ + types-aiobotocore-applicationcostprofiler + ]; + appmesh = [ + types-aiobotocore-appmesh + ]; + apprunner = [ + types-aiobotocore-apprunner + ]; + appstream = [ + types-aiobotocore-appstream + ]; + appsync = [ + types-aiobotocore-appsync + ]; + arc-zonal-shift = [ + types-aiobotocore-arc-zonal-shift + ]; + athena = [ + types-aiobotocore-athena + ]; + auditmanager = [ + types-aiobotocore-auditmanager + ]; + autoscaling = [ + types-aiobotocore-autoscaling + ]; + autoscaling-plans = [ + types-aiobotocore-autoscaling-plans + ]; + backup = [ + types-aiobotocore-backup + ]; + backup-gateway = [ + types-aiobotocore-backup-gateway + ]; + backupstorage = [ + types-aiobotocore-backupstorage + ]; + batch = [ + types-aiobotocore-batch + ]; + billingconductor = [ + types-aiobotocore-billingconductor + ]; + braket = [ + types-aiobotocore-braket + ]; + budgets = [ + types-aiobotocore-budgets + ]; + ce = [ + types-aiobotocore-ce + ]; + chime = [ + types-aiobotocore-chime + ]; + chime-sdk-identity = [ + types-aiobotocore-chime-sdk-identity + ]; + chime-sdk-media-pipelines = [ + types-aiobotocore-chime-sdk-media-pipelines + ]; + chime-sdk-meetings = [ + types-aiobotocore-chime-sdk-meetings + ]; + chime-sdk-messaging = [ + types-aiobotocore-chime-sdk-messaging + ]; + chime-sdk-voice = [ + types-aiobotocore-chime-sdk-voice + ]; + cleanrooms = [ + types-aiobotocore-cleanrooms + ]; + cloud9 = [ + types-aiobotocore-cloud9 + ]; + cloudcontrol = [ + types-aiobotocore-cloudcontrol + ]; + clouddirectory = [ + types-aiobotocore-clouddirectory + ]; + cloudformation = [ + types-aiobotocore-cloudformation + ]; + cloudfront = [ + types-aiobotocore-cloudfront + ]; + cloudhsm = [ + types-aiobotocore-cloudhsm + ]; + cloudhsmv2 = [ + types-aiobotocore-cloudhsmv2 + ]; + cloudsearch = [ + types-aiobotocore-cloudsearch + ]; + cloudsearchdomain = [ + types-aiobotocore-cloudsearchdomain + ]; + cloudtrail = [ + types-aiobotocore-cloudtrail + ]; + cloudtrail-data = [ + types-aiobotocore-cloudtrail-data + ]; + cloudwatch = [ + types-aiobotocore-cloudwatch + ]; + codeartifact = [ + types-aiobotocore-codeartifact + ]; + codebuild = [ + types-aiobotocore-codebuild + ]; + codecatalyst = [ + types-aiobotocore-codecatalyst + ]; + codecommit = [ + types-aiobotocore-codecommit + ]; + codedeploy = [ + types-aiobotocore-codedeploy + ]; + codeguru-reviewer = [ + types-aiobotocore-codeguru-reviewer + ]; + codeguru-security = [ + types-aiobotocore-codeguru-security + ]; + codeguruprofiler = [ + types-aiobotocore-codeguruprofiler + ]; + codepipeline = [ + types-aiobotocore-codepipeline + ]; + codestar = [ + types-aiobotocore-codestar + ]; + codestar-connections = [ + types-aiobotocore-codestar-connections + ]; + codestar-notifications = [ + types-aiobotocore-codestar-notifications + ]; + cognito-identity = [ + types-aiobotocore-cognito-identity + ]; + cognito-idp = [ + types-aiobotocore-cognito-idp + ]; + cognito-sync = [ + types-aiobotocore-cognito-sync + ]; + comprehend = [ + types-aiobotocore-comprehend + ]; + comprehendmedical = [ + types-aiobotocore-comprehendmedical + ]; + compute-optimizer = [ + types-aiobotocore-compute-optimizer + ]; + config = [ + types-aiobotocore-config + ]; + connect = [ + types-aiobotocore-connect + ]; + connect-contact-lens = [ + types-aiobotocore-connect-contact-lens + ]; + connectcampaigns = [ + types-aiobotocore-connectcampaigns + ]; + connectcases = [ + types-aiobotocore-connectcases + ]; + connectparticipant = [ + types-aiobotocore-connectparticipant + ]; + controltower = [ + types-aiobotocore-controltower + ]; + cur = [ + types-aiobotocore-cur + ]; + customer-profiles = [ + types-aiobotocore-customer-profiles + ]; + databrew = [ + types-aiobotocore-databrew + ]; + dataexchange = [ + types-aiobotocore-dataexchange + ]; + datapipeline = [ + types-aiobotocore-datapipeline + ]; + datasync = [ + types-aiobotocore-datasync + ]; + dax = [ + types-aiobotocore-dax + ]; + detective = [ + types-aiobotocore-detective + ]; + devicefarm = [ + types-aiobotocore-devicefarm + ]; + devops-guru = [ + types-aiobotocore-devops-guru + ]; + directconnect = [ + types-aiobotocore-directconnect + ]; + discovery = [ + types-aiobotocore-discovery + ]; + dlm = [ + types-aiobotocore-dlm + ]; + dms = [ + types-aiobotocore-dms + ]; + docdb = [ + types-aiobotocore-docdb + ]; + docdb-elastic = [ + types-aiobotocore-docdb-elastic + ]; + drs = [ + types-aiobotocore-drs + ]; + ds = [ + types-aiobotocore-ds + ]; + dynamodb = [ + types-aiobotocore-dynamodb + ]; + dynamodbstreams = [ + types-aiobotocore-dynamodbstreams + ]; + ebs = [ + types-aiobotocore-ebs + ]; + ec2 = [ + types-aiobotocore-ec2 + ]; + ec2-instance-connect = [ + types-aiobotocore-ec2-instance-connect + ]; + ecr = [ + types-aiobotocore-ecr + ]; + ecr-public = [ + types-aiobotocore-ecr-public + ]; + ecs = [ + types-aiobotocore-ecs + ]; + efs = [ + types-aiobotocore-efs + ]; + eks = [ + types-aiobotocore-eks + ]; + elastic-inference = [ + types-aiobotocore-elastic-inference + ]; + elasticache = [ + types-aiobotocore-elasticache + ]; + elasticbeanstalk = [ + types-aiobotocore-elasticbeanstalk + ]; + elastictranscoder = [ + types-aiobotocore-elastictranscoder + ]; + elb = [ + types-aiobotocore-elb + ]; + elbv2 = [ + types-aiobotocore-elbv2 + ]; + emr = [ + types-aiobotocore-emr + ]; + emr-containers = [ + types-aiobotocore-emr-containers + ]; + emr-serverless = [ + types-aiobotocore-emr-serverless + ]; + entityresolution = [ + types-aiobotocore-entityresolution + ]; + es = [ + types-aiobotocore-es + ]; + essential = [ + types-aiobotocore-cloudformation + types-aiobotocore-dynamodb + types-aiobotocore-ec2 + types-aiobotocore-lambda + types-aiobotocore-rds + types-aiobotocore-s3 + types-aiobotocore-sqs + ]; + events = [ + types-aiobotocore-events + ]; + evidently = [ + types-aiobotocore-evidently + ]; + finspace = [ + types-aiobotocore-finspace + ]; + finspace-data = [ + types-aiobotocore-finspace-data + ]; + firehose = [ + types-aiobotocore-firehose + ]; + fis = [ + types-aiobotocore-fis + ]; + fms = [ + types-aiobotocore-fms + ]; + forecast = [ + types-aiobotocore-forecast + ]; + forecastquery = [ + types-aiobotocore-forecastquery + ]; + frauddetector = [ + types-aiobotocore-frauddetector + ]; + fsx = [ + types-aiobotocore-fsx + ]; + gamelift = [ + types-aiobotocore-gamelift + ]; + gamesparks = [ + types-aiobotocore-gamesparks + ]; + glacier = [ + types-aiobotocore-glacier + ]; + globalaccelerator = [ + types-aiobotocore-globalaccelerator + ]; + glue = [ + types-aiobotocore-glue + ]; + grafana = [ + types-aiobotocore-grafana + ]; + greengrass = [ + types-aiobotocore-greengrass + ]; + greengrassv2 = [ + types-aiobotocore-greengrassv2 + ]; + groundstation = [ + types-aiobotocore-groundstation + ]; + guardduty = [ + types-aiobotocore-guardduty + ]; + health = [ + types-aiobotocore-health + ]; + healthlake = [ + types-aiobotocore-healthlake + ]; + honeycode = [ + types-aiobotocore-honeycode + ]; + iam = [ + types-aiobotocore-iam + ]; + identitystore = [ + types-aiobotocore-identitystore + ]; + imagebuilder = [ + types-aiobotocore-imagebuilder + ]; + importexport = [ + types-aiobotocore-importexport + ]; + inspector = [ + types-aiobotocore-inspector + ]; + inspector2 = [ + types-aiobotocore-inspector2 + ]; + internetmonitor = [ + types-aiobotocore-internetmonitor + ]; + iot = [ + types-aiobotocore-iot + ]; + iot-data = [ + types-aiobotocore-iot-data + ]; + iot-jobs-data = [ + types-aiobotocore-iot-jobs-data + ]; + iot-roborunner = [ + types-aiobotocore-iot-roborunner + ]; + iot1click-devices = [ + types-aiobotocore-iot1click-devices + ]; + iot1click-projects = [ + types-aiobotocore-iot1click-projects + ]; + iotanalytics = [ + types-aiobotocore-iotanalytics + ]; + iotdeviceadvisor = [ + types-aiobotocore-iotdeviceadvisor + ]; + iotevents = [ + types-aiobotocore-iotevents + ]; + iotevents-data = [ + types-aiobotocore-iotevents-data + ]; + iotfleethub = [ + types-aiobotocore-iotfleethub + ]; + iotfleetwise = [ + types-aiobotocore-iotfleetwise + ]; + iotsecuretunneling = [ + types-aiobotocore-iotsecuretunneling + ]; + iotsitewise = [ + types-aiobotocore-iotsitewise + ]; + iotthingsgraph = [ + types-aiobotocore-iotthingsgraph + ]; + iottwinmaker = [ + types-aiobotocore-iottwinmaker + ]; + iotwireless = [ + types-aiobotocore-iotwireless + ]; + ivs = [ + types-aiobotocore-ivs + ]; + ivs-realtime = [ + types-aiobotocore-ivs-realtime + ]; + ivschat = [ + types-aiobotocore-ivschat + ]; + kafka = [ + types-aiobotocore-kafka + ]; + kafkaconnect = [ + types-aiobotocore-kafkaconnect + ]; + kendra = [ + types-aiobotocore-kendra + ]; + kendra-ranking = [ + types-aiobotocore-kendra-ranking + ]; + keyspaces = [ + types-aiobotocore-keyspaces + ]; + kinesis = [ + types-aiobotocore-kinesis + ]; + kinesis-video-archived-media = [ + types-aiobotocore-kinesis-video-archived-media + ]; + kinesis-video-media = [ + types-aiobotocore-kinesis-video-media + ]; + kinesis-video-signaling = [ + types-aiobotocore-kinesis-video-signaling + ]; + kinesis-video-webrtc-storage = [ + types-aiobotocore-kinesis-video-webrtc-storage + ]; + kinesisanalytics = [ + types-aiobotocore-kinesisanalytics + ]; + kinesisanalyticsv2 = [ + types-aiobotocore-kinesisanalyticsv2 + ]; + kinesisvideo = [ + types-aiobotocore-kinesisvideo + ]; + kms = [ + types-aiobotocore-kms + ]; + lakeformation = [ + types-aiobotocore-lakeformation + ]; + lambda = [ + types-aiobotocore-lambda + ]; + lex-models = [ + types-aiobotocore-lex-models + ]; + lex-runtime = [ + types-aiobotocore-lex-runtime + ]; + lexv2-models = [ + types-aiobotocore-lexv2-models + ]; + lexv2-runtime = [ + types-aiobotocore-lexv2-runtime + ]; + license-manager = [ + types-aiobotocore-license-manager + ]; + license-manager-linux-subscriptions = [ + types-aiobotocore-license-manager-linux-subscriptions + ]; + license-manager-user-subscriptions = [ + types-aiobotocore-license-manager-user-subscriptions + ]; + lightsail = [ + types-aiobotocore-lightsail + ]; + location = [ + types-aiobotocore-location + ]; + logs = [ + types-aiobotocore-logs + ]; + lookoutequipment = [ + types-aiobotocore-lookoutequipment + ]; + lookoutmetrics = [ + types-aiobotocore-lookoutmetrics + ]; + lookoutvision = [ + types-aiobotocore-lookoutvision + ]; + m2 = [ + types-aiobotocore-m2 + ]; + machinelearning = [ + types-aiobotocore-machinelearning + ]; + macie = [ + types-aiobotocore-macie + ]; + macie2 = [ + types-aiobotocore-macie2 + ]; + managedblockchain = [ + types-aiobotocore-managedblockchain + ]; + managedblockchain-query = [ + types-aiobotocore-managedblockchain-query + ]; + marketplace-catalog = [ + types-aiobotocore-marketplace-catalog + ]; + marketplace-entitlement = [ + types-aiobotocore-marketplace-entitlement + ]; + marketplacecommerceanalytics = [ + types-aiobotocore-marketplacecommerceanalytics + ]; + mediaconnect = [ + types-aiobotocore-mediaconnect + ]; + mediaconvert = [ + types-aiobotocore-mediaconvert + ]; + medialive = [ + types-aiobotocore-medialive + ]; + mediapackage = [ + types-aiobotocore-mediapackage + ]; + mediapackage-vod = [ + types-aiobotocore-mediapackage-vod + ]; + mediapackagev2 = [ + types-aiobotocore-mediapackagev2 + ]; + mediastore = [ + types-aiobotocore-mediastore + ]; + mediastore-data = [ + types-aiobotocore-mediastore-data + ]; + mediatailor = [ + types-aiobotocore-mediatailor + ]; + medical-imaging = [ + types-aiobotocore-medical-imaging + ]; + memorydb = [ + types-aiobotocore-memorydb + ]; + meteringmarketplace = [ + types-aiobotocore-meteringmarketplace + ]; + mgh = [ + types-aiobotocore-mgh + ]; + mgn = [ + types-aiobotocore-mgn + ]; + migration-hub-refactor-spaces = [ + types-aiobotocore-migration-hub-refactor-spaces + ]; + migrationhub-config = [ + types-aiobotocore-migrationhub-config + ]; + migrationhuborchestrator = [ + types-aiobotocore-migrationhuborchestrator + ]; + migrationhubstrategy = [ + types-aiobotocore-migrationhubstrategy + ]; + mobile = [ + types-aiobotocore-mobile + ]; + mq = [ + types-aiobotocore-mq + ]; + mturk = [ + types-aiobotocore-mturk + ]; + mwaa = [ + types-aiobotocore-mwaa + ]; + neptune = [ + types-aiobotocore-neptune + ]; + network-firewall = [ + types-aiobotocore-network-firewall + ]; + networkmanager = [ + types-aiobotocore-networkmanager + ]; + nimble = [ + types-aiobotocore-nimble + ]; + oam = [ + types-aiobotocore-oam + ]; + omics = [ + types-aiobotocore-omics + ]; + opensearch = [ + types-aiobotocore-opensearch + ]; + opensearchserverless = [ + types-aiobotocore-opensearchserverless + ]; + opsworks = [ + types-aiobotocore-opsworks + ]; + opsworkscm = [ + types-aiobotocore-opsworkscm + ]; + organizations = [ + types-aiobotocore-organizations + ]; + osis = [ + types-aiobotocore-osis + ]; + outposts = [ + types-aiobotocore-outposts + ]; + panorama = [ + types-aiobotocore-panorama + ]; + payment-cryptography = [ + types-aiobotocore-payment-cryptography + ]; + payment-cryptography-data = [ + types-aiobotocore-payment-cryptography-data + ]; + personalize = [ + types-aiobotocore-personalize + ]; + personalize-events = [ + types-aiobotocore-personalize-events + ]; + personalize-runtime = [ + types-aiobotocore-personalize-runtime + ]; + pi = [ + types-aiobotocore-pi + ]; + pinpoint = [ + types-aiobotocore-pinpoint + ]; + pinpoint-email = [ + types-aiobotocore-pinpoint-email + ]; + pinpoint-sms-voice = [ + types-aiobotocore-pinpoint-sms-voice + ]; + pinpoint-sms-voice-v2 = [ + types-aiobotocore-pinpoint-sms-voice-v2 + ]; + pipes = [ + types-aiobotocore-pipes + ]; + polly = [ + types-aiobotocore-polly + ]; + pricing = [ + types-aiobotocore-pricing + ]; + privatenetworks = [ + types-aiobotocore-privatenetworks + ]; + proton = [ + types-aiobotocore-proton + ]; + qldb = [ + types-aiobotocore-qldb + ]; + qldb-session = [ + types-aiobotocore-qldb-session + ]; + quicksight = [ + types-aiobotocore-quicksight + ]; + ram = [ + types-aiobotocore-ram + ]; + rbin = [ + types-aiobotocore-rbin + ]; + rds = [ + types-aiobotocore-rds + ]; + rds-data = [ + types-aiobotocore-rds-data + ]; + redshift = [ + types-aiobotocore-redshift + ]; + redshift-data = [ + types-aiobotocore-redshift-data + ]; + redshift-serverless = [ + types-aiobotocore-redshift-serverless + ]; + rekognition = [ + types-aiobotocore-rekognition + ]; + resiliencehub = [ + types-aiobotocore-resiliencehub + ]; + resource-explorer-2 = [ + types-aiobotocore-resource-explorer-2 + ]; + resource-groups = [ + types-aiobotocore-resource-groups + ]; + resourcegroupstaggingapi = [ + types-aiobotocore-resourcegroupstaggingapi + ]; + robomaker = [ + types-aiobotocore-robomaker + ]; + rolesanywhere = [ + types-aiobotocore-rolesanywhere + ]; + route53 = [ + types-aiobotocore-route53 + ]; + route53-recovery-cluster = [ + types-aiobotocore-route53-recovery-cluster + ]; + route53-recovery-control-config = [ + types-aiobotocore-route53-recovery-control-config + ]; + route53-recovery-readiness = [ + types-aiobotocore-route53-recovery-readiness + ]; + route53domains = [ + types-aiobotocore-route53domains + ]; + route53resolver = [ + types-aiobotocore-route53resolver + ]; + rum = [ + types-aiobotocore-rum + ]; + s3 = [ + types-aiobotocore-s3 + ]; + s3control = [ + types-aiobotocore-s3control + ]; + s3outposts = [ + types-aiobotocore-s3outposts + ]; + sagemaker = [ + types-aiobotocore-sagemaker + ]; + sagemaker-a2i-runtime = [ + types-aiobotocore-sagemaker-a2i-runtime + ]; + sagemaker-edge = [ + types-aiobotocore-sagemaker-edge + ]; + sagemaker-featurestore-runtime = [ + types-aiobotocore-sagemaker-featurestore-runtime + ]; + sagemaker-geospatial = [ + types-aiobotocore-sagemaker-geospatial + ]; + sagemaker-metrics = [ + types-aiobotocore-sagemaker-metrics + ]; + sagemaker-runtime = [ + types-aiobotocore-sagemaker-runtime + ]; + savingsplans = [ + types-aiobotocore-savingsplans + ]; + scheduler = [ + types-aiobotocore-scheduler + ]; + schemas = [ + types-aiobotocore-schemas + ]; + sdb = [ + types-aiobotocore-sdb + ]; + secretsmanager = [ + types-aiobotocore-secretsmanager + ]; + securityhub = [ + types-aiobotocore-securityhub + ]; + securitylake = [ + types-aiobotocore-securitylake + ]; + serverlessrepo = [ + types-aiobotocore-serverlessrepo + ]; + service-quotas = [ + types-aiobotocore-service-quotas + ]; + servicecatalog = [ + types-aiobotocore-servicecatalog + ]; + servicecatalog-appregistry = [ + types-aiobotocore-servicecatalog-appregistry + ]; + servicediscovery = [ + types-aiobotocore-servicediscovery + ]; + ses = [ + types-aiobotocore-ses + ]; + sesv2 = [ + types-aiobotocore-sesv2 + ]; + shield = [ + types-aiobotocore-shield + ]; + signer = [ + types-aiobotocore-signer + ]; + simspaceweaver = [ + types-aiobotocore-simspaceweaver + ]; + sms = [ + types-aiobotocore-sms + ]; + sms-voice = [ + types-aiobotocore-sms-voice + ]; + snow-device-management = [ + types-aiobotocore-snow-device-management + ]; + snowball = [ + types-aiobotocore-snowball + ]; + sns = [ + types-aiobotocore-sns + ]; + sqs = [ + types-aiobotocore-sqs + ]; + ssm = [ + types-aiobotocore-ssm + ]; + ssm-contacts = [ + types-aiobotocore-ssm-contacts + ]; + ssm-incidents = [ + types-aiobotocore-ssm-incidents + ]; + ssm-sap = [ + types-aiobotocore-ssm-sap + ]; + sso = [ + types-aiobotocore-sso + ]; + sso-admin = [ + types-aiobotocore-sso-admin + ]; + sso-oidc = [ + types-aiobotocore-sso-oidc + ]; + stepfunctions = [ + types-aiobotocore-stepfunctions + ]; + storagegateway = [ + types-aiobotocore-storagegateway + ]; + sts = [ + types-aiobotocore-sts + ]; + support = [ + types-aiobotocore-support + ]; + support-app = [ + types-aiobotocore-support-app + ]; + swf = [ + types-aiobotocore-swf + ]; + synthetics = [ + types-aiobotocore-synthetics + ]; + textract = [ + types-aiobotocore-textract + ]; + timestream-query = [ + types-aiobotocore-timestream-query + ]; + timestream-write = [ + types-aiobotocore-timestream-write + ]; + tnb = [ + types-aiobotocore-tnb + ]; + transcribe = [ + types-aiobotocore-transcribe + ]; + transfer = [ + types-aiobotocore-transfer + ]; + translate = [ + types-aiobotocore-translate + ]; + verifiedpermissions = [ + types-aiobotocore-verifiedpermissions + ]; + voice-id = [ + types-aiobotocore-voice-id + ]; + vpc-lattice = [ + types-aiobotocore-vpc-lattice + ]; + waf = [ + types-aiobotocore-waf + ]; + waf-regional = [ + types-aiobotocore-waf-regional + ]; + wafv2 = [ + types-aiobotocore-wafv2 + ]; + wellarchitected = [ + types-aiobotocore-wellarchitected + ]; + wisdom = [ + types-aiobotocore-wisdom + ]; + workdocs = [ + types-aiobotocore-workdocs + ]; + worklink = [ + types-aiobotocore-worklink + ]; + workmail = [ + types-aiobotocore-workmail + ]; + workmailmessageflow = [ + types-aiobotocore-workmailmessageflow + ]; + workspaces = [ + types-aiobotocore-workspaces + ]; + workspaces-web = [ + types-aiobotocore-workspaces-web + ]; + xray = [ + types-aiobotocore-xray + ]; + }; + + # Package has no tests + doCheck = false; + + meta = with lib; { + description = "Type annotations for aiobotocore generated with mypy-boto3-builder"; + homepage = "https://pypi.org/project/types-aiobotocore/"; + license = licenses.mit; + maintainers = with maintainers; [ mbalatsko ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6e41d69aaa00..bba7bf26f585 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14143,6 +14143,8 @@ self: super: with self; { type-infer = callPackage ../development/python-modules/type-infer { }; + types-aiobotocore = callPackage ../development/python-modules/types-aiobotocore { }; + inherit (callPackage ../development/python-modules/types-aiobotocore-packages { }) types-aiobotocore-accessanalyzer From 8ef11ee7a677c3fae27f07ae6ab2f83673b6aa2b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 03:44:44 +0200 Subject: [PATCH 360/420] python311Packages.gpiozero: 1.6.2 -> 2.0 https://gpiozero.readthedocs.io/en/latest/changelog.html#release-2-0-2023-09-12 --- pkgs/development/python-modules/gpiozero/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/gpiozero/default.nix b/pkgs/development/python-modules/gpiozero/default.nix index 587f3c9e3015..2d5873aa24e1 100644 --- a/pkgs/development/python-modules/gpiozero/default.nix +++ b/pkgs/development/python-modules/gpiozero/default.nix @@ -4,14 +4,13 @@ , sphinx-rtd-theme , sphinxHook , colorzero -, mock , pythonOlder , pytestCheckHook }: buildPythonPackage rec { pname = "gpiozero"; - version = "1.6.2"; + version = "2.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -20,9 +19,14 @@ buildPythonPackage rec { owner = "gpiozero"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-dmFc3DNTlEajYQ5e8QK2WfehwYwAsWyG2cxKg5ykEaI="; + hash = "sha256-6qSB9RMypNXNj+Ds1nyzB7iaeHXvF0swSubrJSn2L34="; }; + postPatch = '' + substituteInPlace setup.cfg \ + --replace " --cov" "" + ''; + outputs = [ "out" "doc" @@ -38,7 +42,6 @@ buildPythonPackage rec { ]; nativeCheckInputs = [ - mock pytestCheckHook ]; From bd5b35db3f7a8cfdea7522b4483910afc8b40ba9 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 4 Oct 2023 04:20:00 +0000 Subject: [PATCH 361/420] pgbouncer: 1.20.0 -> 1.20.1 Changelog: https://github.com/pgbouncer/pgbouncer/releases/tag/pgbouncer_1_20_1 --- pkgs/servers/sql/pgbouncer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/pgbouncer/default.nix b/pkgs/servers/sql/pgbouncer/default.nix index 7a528ba3c6d5..b0f2bcb61626 100644 --- a/pkgs/servers/sql/pgbouncer/default.nix +++ b/pkgs/servers/sql/pgbouncer/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "pgbouncer"; - version = "1.20.0"; + version = "1.20.1"; src = fetchurl { url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; - hash = "sha256-5w1afLi3Hdfbq/01cdcaS2uZ8uhdjXGvHnNPbYZjXw4="; + hash = "sha256-JJks9VfXNCbXBIaY3/x7AZ5jZNTYdXriz14kcShqIIg="; }; nativeBuildInputs = [ pkg-config ]; From 217bc978271911c315e2ca73595d589a8c1f7c8a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 4 Oct 2023 04:20:00 +0000 Subject: [PATCH 362/420] pgmetrics: 1.15.2 -> 1.16.0 Diff: https://github.com/rapidloop/pgmetrics/compare/v1.15.2...v1.16.0 --- pkgs/tools/misc/pgmetrics/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/pgmetrics/default.nix b/pkgs/tools/misc/pgmetrics/default.nix index 1b6312db12df..7a24a87ca767 100644 --- a/pkgs/tools/misc/pgmetrics/default.nix +++ b/pkgs/tools/misc/pgmetrics/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "pgmetrics"; - version = "1.15.2"; + version = "1.16.0"; src = fetchFromGitHub { owner = "rapidloop"; repo = pname; rev = "v${version}"; - sha256 = "sha256-WzyTLOJo/wTZA9glxO0ovcaADlHV+AKLChWSLJ+uvaQ="; + sha256 = "sha256-8pF3E0Zh/SsH6+5iXt1KFwud2ijoisYfcu+QHRM9x9s="; }; vendorHash = "sha256-KIMnvGMIipuIFPTSeERtCfvlPuvHvEHdjBJ1TbT2d1s="; From fcda1b71b60ab0ecad6153a8cf46f9b2aad18b87 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 4 Oct 2023 04:20:00 +0000 Subject: [PATCH 363/420] llhttp: 9.1.2 -> 9.1.3 Diff: https://github.com/nodejs/llhttp/compare/release/v9.1.2...release/v9.1.3 Changelog: https://github.com/nodejs/llhttp/releases/tag/release/v9.1.3 --- pkgs/development/libraries/llhttp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/llhttp/default.nix b/pkgs/development/libraries/llhttp/default.nix index 39b1e0bf260e..fbf7198f1d55 100644 --- a/pkgs/development/libraries/llhttp/default.nix +++ b/pkgs/development/libraries/llhttp/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "llhttp"; - version = "9.1.2"; + version = "9.1.3"; src = fetchFromGitHub { owner = "nodejs"; repo = "llhttp"; rev = "release/v${finalAttrs.version}"; - hash = "sha256-kW6u9ETZJcJBh150chfE3SEwFpT7evZ0cqz8caM7fbQ="; + hash = "sha256-QacjukWkRCuQA4qzUq45521YOBLPuOSKNR1pVxgxe9o="; }; outputs = [ "out" "dev" ]; From 3ee65bbd4c250322c486253a9b97bcaa104cf3a9 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 4 Oct 2023 05:18:36 +0000 Subject: [PATCH 364/420] cirrus-cli: 0.104.0 -> 0.105.1 --- .../tools/continuous-integration/cirrus-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/cirrus-cli/default.nix b/pkgs/development/tools/continuous-integration/cirrus-cli/default.nix index 9defb319111c..5e30c977c41e 100644 --- a/pkgs/development/tools/continuous-integration/cirrus-cli/default.nix +++ b/pkgs/development/tools/continuous-integration/cirrus-cli/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "cirrus-cli"; - version = "0.104.0"; + version = "0.105.1"; src = fetchFromGitHub { owner = "cirruslabs"; repo = pname; rev = "v${version}"; - sha256 = "sha256-3X/VZirKSYD+y//e8Ft8f0D27vJWekdyUTmVvOgc5bQ="; + sha256 = "sha256-F0T/4KUz0iU/THE8iRSdKe0Wo3HWQMYOd5vmbO61SzA="; }; - vendorHash = "sha256-0otC2+f0PMBZ+0Xiyq4kBd2YCJjAvDhThB3W9gIjHOY="; + vendorHash = "sha256-+cxh3/TQqm6n7hUYhW2B3pdfdtzRuepZmLNSGVPA3H0="; ldflags = [ "-X github.com/cirruslabs/cirrus-cli/internal/version.Version=v${version}" From f7c81d7cd3b2f2f4fbd089a11bcb919b02f442db Mon Sep 17 00:00:00 2001 From: Jonathan Wilkins Date: Mon, 2 Oct 2023 13:25:40 +0100 Subject: [PATCH 365/420] altair: Respect NIXOS_OZONE_WL to enable Wayland mode --- pkgs/development/tools/altair-graphql-client/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/altair-graphql-client/default.nix b/pkgs/development/tools/altair-graphql-client/default.nix index dad7c397c5b1..bf8904f36dcc 100644 --- a/pkgs/development/tools/altair-graphql-client/default.nix +++ b/pkgs/development/tools/altair-graphql-client/default.nix @@ -1,4 +1,4 @@ -{ lib, appimageTools, fetchurl }: +{ lib, appimageTools, makeWrapper, fetchurl }: let pname = "altair"; @@ -17,6 +17,10 @@ appimageTools.wrapType2 { extraInstallCommands = '' mv $out/bin/${pname}-${version} $out/bin/${pname} + source "${makeWrapper}/nix-support/setup-hook" + wrapProgram $out/bin/${pname} \ + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" + install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications substituteInPlace $out/share/applications/${pname}.desktop \ --replace 'Exec=AppRun' 'Exec=${pname}' From 4c3dbd50cfa0fe5cb3f2a3786f4a15e409602dc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Wed, 4 Oct 2023 12:33:10 +0200 Subject: [PATCH 366/420] ast-grep: 0.12.2 -> 0.12.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- pkgs/by-name/as/ast-grep/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/as/ast-grep/package.nix b/pkgs/by-name/as/ast-grep/package.nix index d275939e87cc..3ac77c214afc 100644 --- a/pkgs/by-name/as/ast-grep/package.nix +++ b/pkgs/by-name/as/ast-grep/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "ast-grep"; - version = "0.12.2"; + version = "0.12.4"; src = fetchFromGitHub { owner = "ast-grep"; repo = "ast-grep"; rev = version; - hash = "sha256-N9hfHgzqwV/G3/xNY2Vx1i2dW6BcABJ/4lkhnLuvIns="; + hash = "sha256-rWfuPk8PWxOmy/WDXGnqBCuGPEI7tBwuOc0IP2FhAq8="; }; - cargoHash = "sha256-3ntsPC6OWtSN3MH+3wN2BgOqH69jiW93/xfLY+niARI="; + cargoHash = "sha256-M3eNvY8UwsnV9mvkGD//u1zTiJzV1ce7ODyQjnDSZTo="; # error: linker `aarch64-linux-gnu-gcc` not found postPatch = '' From 87e84b2c7fc07815ee95972a92ce0c984f6d8903 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 18 Sep 2023 14:41:57 +0200 Subject: [PATCH 367/420] python310Packages.pytensor: 2.11.3 -> 2.17.1 --- .../python-modules/pytensor/default.nix | 57 +++++++++++-------- 1 file changed, 34 insertions(+), 23 deletions(-) diff --git a/pkgs/development/python-modules/pytensor/default.nix b/pkgs/development/python-modules/pytensor/default.nix index a3257131ac1a..ad48c11a5def 100644 --- a/pkgs/development/python-modules/pytensor/default.nix +++ b/pkgs/development/python-modules/pytensor/default.nix @@ -1,40 +1,51 @@ -{ stdenv -, lib +{ lib , buildPythonPackage -, cons -, cython -, etuples , fetchFromGitHub +, cython +, versioneer +, cons +, etuples , filelock -, jax -, jaxlib , logical-unification , minikanren -, numba -, numba-scipy , numpy -, pytestCheckHook -, pythonOlder , scipy , typing-extensions +, jax +, jaxlib +, numba +, numba-scipy +, pytest-mock +, pytestCheckHook +, pythonOlder +# Tensorflow is currently (2023/10/04) broken. +# Thus, we don't provide this optional test dependency. +# , tensorflow-probability +, stdenv }: buildPythonPackage rec { pname = "pytensor"; - version = "2.11.3"; - format = "setuptools"; + version = "2.17.1"; + pyproject = true; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "pymc-devs"; - repo = pname; + repo = "pytensor"; rev = "refs/tags/rel-${version}"; - hash = "sha256-4GDur8S19i8pZkywKHZUelmd2e0jZmC5HzF7o2esDl4="; + hash = "sha256-OG7ZvXJOTQzSpMoj94K9JwG6ZQRQSSp+k2slkK6BJ9I="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace "versioneer[toml]==0.28" "versioneer[toml]" + ''; + nativeBuildInputs = [ cython + versioneer ]; propagatedBuildInputs = [ @@ -48,19 +59,18 @@ buildPythonPackage rec { typing-extensions ]; - checkInputs = [ + nativeCheckInputs = [ jax jaxlib numba numba-scipy + pytest-mock pytestCheckHook + # Tensorflow is currently (2023/10/04) broken. + # Thus, we don't provide this optional test dependency. + # tensorflow-probability ]; - postPatch = '' - substituteInPlace setup.cfg \ - --replace "--durations=50" "" - ''; - preBuild = '' export HOME=$(mktemp -d) ''; @@ -76,13 +86,14 @@ buildPythonPackage rec { "test_logsumexp_benchmark" "test_scan_multiple_output" "test_vector_taps_benchmark" + # Temporarily disabled because of broken tensorflow-probability + "test_tfp_ops" ]; disabledTestPaths = [ # Don't run the most compute-intense tests "tests/scan/" "tests/tensor/" - "tests/sandbox/" "tests/sparse/sandbox/" ]; From c5bbe1e74a508df18faaa38733de1ebfa9120ced Mon Sep 17 00:00:00 2001 From: Maksym Balatsko Date: Wed, 4 Oct 2023 08:04:54 -0700 Subject: [PATCH 368/420] python3Packages.aio-pika: 9.1.3 -> 9.3.0 Diff: https://github.com/mosquito/aio-pika/compare/refs/tags/9.1.3...9.3.0 Changelog: https://github.com/mosquito/aio-pika/blob/9.3.0/CHANGELOG.md --- pkgs/development/python-modules/aio-pika/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aio-pika/default.nix b/pkgs/development/python-modules/aio-pika/default.nix index 9082fd4b37a7..fdcb67102928 100644 --- a/pkgs/development/python-modules/aio-pika/default.nix +++ b/pkgs/development/python-modules/aio-pika/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "aio-pika"; - version = "9.1.3"; + version = "9.3.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "mosquito"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-QCM/9Vt9/uXylaU8xymXJEjVd6sFRcVhpr2CGjB0AoY="; + hash = "sha256-Fy3vTXfj+gu/+PYWPfcOZ/D7boRiZYcFPX29p28HoGs="; }; nativeBuildInputs = [ From 050755319a883766811e0ea6c0bca8f679a1f772 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Oct 2023 18:22:18 +0200 Subject: [PATCH 369/420] python311Packages.types-awscrt: 0.19.1 -> 0.19.2 Changelog: https://github.com/youtype/types-awscrt/releases/tag/0.19.2 --- pkgs/development/python-modules/types-awscrt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/types-awscrt/default.nix b/pkgs/development/python-modules/types-awscrt/default.nix index ea56034cf9c2..ce82a75f52d4 100644 --- a/pkgs/development/python-modules/types-awscrt/default.nix +++ b/pkgs/development/python-modules/types-awscrt/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "types-awscrt"; - version = "0.19.1"; + version = "0.19.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "types_awscrt"; inherit version; - hash = "sha256-YYM6oUDnJKkJgCVhD0uM3j3PZbhCYx10RzePn1204f0="; + hash = "sha256-2MN5QgunWx5DaH0SsLdypbsX81KFmivvaqjwq94SP1U="; }; nativeBuildInputs = [ From d4c3278f44bff2655623d8817a829b41ed4a83da Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Oct 2023 18:25:19 +0200 Subject: [PATCH 370/420] restish: 0.18.0 -> 0.19.0 Diff: https://github.com/danielgtaylor/restish/compare/refs/tags/v0.18.0...v0.19.0 Changelog: https://github.com/danielgtaylor/restish/releases/tag/v0.19.0 --- pkgs/tools/networking/restish/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/restish/default.nix b/pkgs/tools/networking/restish/default.nix index c13c5708b52b..303d88b235f2 100644 --- a/pkgs/tools/networking/restish/default.nix +++ b/pkgs/tools/networking/restish/default.nix @@ -10,13 +10,13 @@ buildGoModule rec { pname = "restish"; - version = "0.18.0"; + version = "0.19.0"; src = fetchFromGitHub { owner = "danielgtaylor"; repo = "restish"; rev = "refs/tags/v${version}"; - hash = "sha256-DvI1pe4ONuIhSecJOhv6GKRzOYHo+jePqT8oYVvcKnM="; + hash = "sha256-zAWlbfZywL8jepgmXBM5lacRv1N/+dBd+9vIavWAyNs="; }; vendorHash = "sha256-sUBqeLhpWUu1NfAmFQCKFHm8DQaB8LYRrFexvuF8vC8="; From 92e8069618b70fe1393af04ee0ea9ef09373b9a0 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Oct 2023 06:14:25 +0200 Subject: [PATCH 371/420] checkov: 2.4.59 -> 2.4.61 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.4.59...2.4.61 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.4.61 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index cb91c8c3058e..bff004557503 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.4.59"; + version = "2.4.61"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-/Qqh0f40JxHjIbt7rm4ZY7dTXGVMHrzkgNSjPJq8SLo="; + hash = "sha256-j/mBQe9Z+8tnYdD/cEQdn7lsPlPfZTHF+Dux4Pm1768="; }; patches = [ From 388b09ff207ad3f0f221f91e421c5515da5038a3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 4 Oct 2023 18:27:39 +0200 Subject: [PATCH 372/420] checkov: 2.4.61 -> 2.5.3 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.4.61...2.5.3 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.5.3 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index bff004557503..302acfb7e0f5 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.4.61"; + version = "2.5.3"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-j/mBQe9Z+8tnYdD/cEQdn7lsPlPfZTHF+Dux4Pm1768="; + hash = "sha256-QSxeVu1nGK9j8hQqcUZ2RhjPmCHjbTuG/1hvMjUhrOo="; }; patches = [ From c88a07c3412240a0ab444c3d1be8f8d7776f952f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 4 Oct 2023 12:27:20 -0700 Subject: [PATCH 373/420] python310Packages.ypy-websocket: 0.12.3 -> 0.12.4 Diff: https://github.com/y-crdt/ypy-websocket/compare/refs/tags/v0.12.3...v0.12.4 Changelog: https://github.com/y-crdt/ypy-websocket/blob/refs/tags/v0.12.4/CHANGELOG.md --- pkgs/development/python-modules/ypy-websocket/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ypy-websocket/default.nix b/pkgs/development/python-modules/ypy-websocket/default.nix index 70b9d9bfb0bf..b1840800622f 100644 --- a/pkgs/development/python-modules/ypy-websocket/default.nix +++ b/pkgs/development/python-modules/ypy-websocket/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "ypy-websocket"; - version = "0.12.3"; + version = "0.12.4"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "y-crdt"; repo = "ypy-websocket"; rev = "refs/tags/v${version}"; - hash = "sha256-gBLRjqsI2xx2z8qfaix4Gsm1rlNcjZ5g1PNVW7N4Q5k="; + hash = "sha256-48x+MUhev9dErC003XOP3oGKd5uOghlBFgcR8Nm/0xs="; }; pythonRelaxDeps = [ From b8f827e85b73b65a4beb44520b3794932ebaa2c1 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 4 Oct 2023 21:59:26 +0200 Subject: [PATCH 374/420] =?UTF-8?q?ocamlPackages.zmq:=205.1.5=20=E2=86=92?= =?UTF-8?q?=205.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/zmq/default.nix | 10 +++------- pkgs/development/ocaml-modules/zmq/lwt.nix | 5 ++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/pkgs/development/ocaml-modules/zmq/default.nix b/pkgs/development/ocaml-modules/zmq/default.nix index 267566d7ba0a..b92d8e6cb867 100644 --- a/pkgs/development/ocaml-modules/zmq/default.nix +++ b/pkgs/development/ocaml-modules/zmq/default.nix @@ -2,19 +2,15 @@ buildDunePackage rec { pname = "zmq"; - version = "5.1.5"; - - duneVersion = "3"; + version = "5.2.1"; src = fetchurl { - url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-lwt-${version}.tbz"; - sha256 = "sha256-mUfRPatLPFeSzWDwCIoFaVl85VkvDch4i6pOn3Kme1Y="; + url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-${version}.tbz"; + hash = "sha256-hVKfaTrUFqEBsv5hFB7JwsR630M0DKnqhB0QHpxcHKc="; }; buildInputs = [ czmq dune-configurator ]; - propagatedBuildInputs = [ stdint ]; - meta = { description = "ZeroMQ bindings for OCaml"; license = lib.licenses.mit; diff --git a/pkgs/development/ocaml-modules/zmq/lwt.nix b/pkgs/development/ocaml-modules/zmq/lwt.nix index f6408933452c..1bbc1b7ad63e 100644 --- a/pkgs/development/ocaml-modules/zmq/lwt.nix +++ b/pkgs/development/ocaml-modules/zmq/lwt.nix @@ -1,9 +1,8 @@ -{ buildDunePackage, zmq, ocaml_lwt }: +{ buildDunePackage, zmq, lwt }: buildDunePackage { pname = "zmq-lwt"; inherit (zmq) version src meta; - duneVersion = "3"; - propagatedBuildInputs = [ zmq ocaml_lwt ]; + propagatedBuildInputs = [ zmq lwt ]; } From 1eb03ba5c4d43d53310712b5ca5200ddab998cc5 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 4 Oct 2023 18:06:24 -0400 Subject: [PATCH 375/420] svg2pdf: 0.7.1 -> 0.8.0 Diff: https://github.com/typst/svg2pdf/compare/v0.7.1...v0.8.0 Changelog: https://github.com/typst/svg2pdf/releases/tag/v0.8.0 --- pkgs/tools/graphics/svg2pdf/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/svg2pdf/default.nix b/pkgs/tools/graphics/svg2pdf/default.nix index 764ab301ed65..5952bb615ec6 100644 --- a/pkgs/tools/graphics/svg2pdf/default.nix +++ b/pkgs/tools/graphics/svg2pdf/default.nix @@ -5,15 +5,15 @@ rustPlatform.buildRustPackage rec { pname = "svg2pdf"; - version = "0.7.1"; + version = "0.8.0"; src = fetchFromGitHub { owner = "typst"; repo = "svg2pdf"; rev = "v${version}"; - hash = "sha256-XTOGxuytbkaq4ZV6rXKJF9A/KSX6naYQ3kdICDQU4JA="; + hash = "sha256-iN6/VO6EMP9wMoTn4t0y1Oq9XP9Q3UcRNCWsMzI4Fn8="; }; - cargoHash = "sha256-CQPkVJ3quQlnIS05tAj+i7kGk2l0RvGM/FRNvgQ0mHM="; + cargoHash = "sha256-Xxb8DeTAmw0Pq4mrLVcpEuzq7/SX+AlUSWoA2dcVQJA="; buildFeatures = [ "cli" ]; meta = with lib; { From 2d97d78d9d55206063c5706545ead788f9a52b0a Mon Sep 17 00:00:00 2001 From: Christopher Rzipa Date: Sat, 30 Sep 2023 19:31:26 +0200 Subject: [PATCH 376/420] roam-research: add aarch64-darwin and x86_64-darwin support --- .../office/roam-research/common.nix | 22 +++++ .../office/roam-research/darwin.nix | 34 ++++++++ .../office/roam-research/default.nix | 87 ++----------------- .../office/roam-research/linux.nix | 71 +++++++++++++++ 4 files changed, 134 insertions(+), 80 deletions(-) create mode 100644 pkgs/applications/office/roam-research/common.nix create mode 100644 pkgs/applications/office/roam-research/darwin.nix create mode 100644 pkgs/applications/office/roam-research/linux.nix diff --git a/pkgs/applications/office/roam-research/common.nix b/pkgs/applications/office/roam-research/common.nix new file mode 100644 index 000000000000..8e63b111ad2a --- /dev/null +++ b/pkgs/applications/office/roam-research/common.nix @@ -0,0 +1,22 @@ +{ fetchurl }: +let + pname = "roam-research"; + version = "0.0.18"; +in +{ + inherit pname version; + sources = { + x86_64-darwin = fetchurl { + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/Roam+Research-${version}.dmg"; + hash = "sha256-jyFNH3qrgrsftExL/b2t8bY3W3fYVz+Gp11AuaIMxbg="; + }; + aarch64-darwin = fetchurl { + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/Roam+Research-${version}-arm64.dmg"; + hash = "sha256-AnyvFCbyUi6tcgxYQAj+zPLl4/kVh9ZeupetRhzH0PU="; + }; + x86_64-linux = fetchurl { + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/${pname}_${version}_amd64.deb"; + hash = "sha256-veDWBFZbODsdaO1UdfuC4w6oGCkeVBe+fqKn5XVHKDQ="; + }; + }; +} diff --git a/pkgs/applications/office/roam-research/darwin.nix b/pkgs/applications/office/roam-research/darwin.nix new file mode 100644 index 000000000000..2c736c0c1a7f --- /dev/null +++ b/pkgs/applications/office/roam-research/darwin.nix @@ -0,0 +1,34 @@ +{ lib, stdenv, undmg, fetchurl }: +let + common = import ./common.nix { inherit fetchurl; }; + inherit (stdenv.hostPlatform) system; +in +stdenv.mkDerivation rec { + inherit (common) pname version; + src = common.sources.${system} or (throw "Source for ${pname} is not available for ${system}"); + + appName = "Roam Research"; + + sourceRoot = "."; + + nativeBuildInputs = [ undmg ]; + installPhase = '' + runHook preInstall + + mkdir -p "$out/Applications" + cp -R *.app "$out/Applications" + + mkdir -p $out/bin + ln -s "$out/Applications/${appName}.app/Contents/MacOS/${appName}" "$out/bin/${appName}" + runHook postInstall + ''; + + meta = with lib; { + description = "A note-taking tool for networked thought"; + homepage = "https://roamresearch.com/"; + maintainers = with lib.maintainers; [ dbalan ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = [ "x86_64-darwin" "aarch64-darwin" ]; + }; +} diff --git a/pkgs/applications/office/roam-research/default.nix b/pkgs/applications/office/roam-research/default.nix index e1ca9bb47e80..408f026bc57a 100644 --- a/pkgs/applications/office/roam-research/default.nix +++ b/pkgs/applications/office/roam-research/default.nix @@ -1,81 +1,8 @@ -{ stdenv, lib, fetchurl, alsa-lib, atk, cairo, cups, dbus, dpkg, expat -, gdk-pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor -, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm -, libpulseaudio, libxcb, libxkbcommon, libxshmfence, mesa, nspr, nss, pango -, udev, }: - +{ stdenv, callPackage, ... }@args: let - libPath = lib.makeLibraryPath [ - alsa-lib - atk - cairo - cups - dbus - expat - gdk-pixbuf - glib - gtk3 - libX11 - libXcomposite - libXdamage - libXext - libXfixes - libXi - libXrandr - libdrm - libxcb - libxkbcommon - libxshmfence - mesa - nspr - nss - pango - stdenv.cc.cc - libXScrnSaver - libXcursor - libXrender - libXtst - libpulseaudio - udev - ]; -in stdenv.mkDerivation rec { - pname = "roam-research"; - version = "0.0.18"; - - src = fetchurl { - url = - "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/${pname}_${version}_amd64.deb"; - sha256 = "sha256-veDWBFZbODsdaO1UdfuC4w6oGCkeVBe+fqKn5XVHKDQ="; - }; - - nativeBuildInputs = [ dpkg ]; - - unpackPhase = '' - mkdir pkg - dpkg-deb -x $src pkg - sourceRoot=pkg - ''; - - installPhase = '' - mkdir -p "$out/bin" - mv opt "$out/" - - ln -s "$out/opt/Roam Research/roam-research" "$out/bin/roam-research" - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:$out/opt/Roam Research:\$ORIGIN" "$out/opt/Roam Research/roam-research" - - mv usr/* "$out/" - - substituteInPlace $out/share/applications/roam-research.desktop \ - --replace "/opt/Roam Research/roam-research" "roam-research" - ''; - - dontPatchELF = true; - meta = with lib; { - description = "A note-taking tool for networked thought."; - homepage = "https://roamresearch.com/"; - maintainers = with lib.maintainers; [ dbalan ]; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - license = licenses.unfree; - platforms = [ "x86_64-linux" ]; - }; -} + extraArgs = removeAttrs args [ "callPackage" ]; +in +if stdenv.isDarwin then + callPackage ./darwin.nix (extraArgs // { }) +else + callPackage ./linux.nix (extraArgs // { }) diff --git a/pkgs/applications/office/roam-research/linux.nix b/pkgs/applications/office/roam-research/linux.nix new file mode 100644 index 000000000000..646ec762b2d5 --- /dev/null +++ b/pkgs/applications/office/roam-research/linux.nix @@ -0,0 +1,71 @@ +{ stdenv, lib, fetchurl, alsa-lib, atk, cairo, cups, dbus, dpkg, expat +, gdk-pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor +, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm +, libpulseaudio, libxcb, libxkbcommon, libxshmfence, mesa, nspr, nss, pango +, udev, }: + +let + common = import ./common.nix { inherit fetchurl; }; + inherit (stdenv.hostPlatform) system; + libPath = lib.makeLibraryPath [ + alsa-lib + atk + cairo + cups + dbus + expat + gdk-pixbuf + glib + gtk3 + libX11 + libXcomposite + libXdamage + libXext + libXfixes + libXi + libXrandr + libdrm + libxcb + libxkbcommon + libxshmfence + mesa + nspr + nss + pango + stdenv.cc.cc + libXScrnSaver + libXcursor + libXrender + libXtst + libpulseaudio + udev + ]; +in stdenv.mkDerivation rec { + inherit (common) pname version; + src = common.sources.${system} or (throw "Source for ${pname} is not available for ${system}"); + + nativeBuildInputs = [ dpkg ]; + + installPhase = '' + mkdir -p "$out/bin" + mv opt "$out/" + + ln -s "$out/opt/Roam Research/roam-research" "$out/bin/roam-research" + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:$out/opt/Roam Research:\$ORIGIN" "$out/opt/Roam Research/roam-research" + + mv usr/* "$out/" + + substituteInPlace $out/share/applications/roam-research.desktop \ + --replace "/opt/Roam Research/roam-research" "roam-research" + ''; + + dontPatchELF = true; + meta = with lib; { + description = "A note-taking tool for networked thought"; + homepage = "https://roamresearch.com/"; + maintainers = with lib.maintainers; [ dbalan ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + license = licenses.unfree; + platforms = [ "x86_64-linux" ]; + }; +} From e1004162a9a51711afa65ce9a8a728a015b04600 Mon Sep 17 00:00:00 2001 From: Artturin Date: Thu, 5 Oct 2023 03:03:21 +0300 Subject: [PATCH 377/420] roam-research: add reason why patchelf is not used --- pkgs/applications/office/roam-research/linux.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/office/roam-research/linux.nix b/pkgs/applications/office/roam-research/linux.nix index 646ec762b2d5..5873bcfdd190 100644 --- a/pkgs/applications/office/roam-research/linux.nix +++ b/pkgs/applications/office/roam-research/linux.nix @@ -59,7 +59,9 @@ in stdenv.mkDerivation rec { --replace "/opt/Roam Research/roam-research" "roam-research" ''; + # autoPatchelfHook/patchelf are not used because they cause the binary to coredump. dontPatchELF = true; + meta = with lib; { description = "A note-taking tool for networked thought"; homepage = "https://roamresearch.com/"; From 3314184e25ef05a2d8612b7c480ee6428cad5793 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 5 Oct 2023 00:27:21 +0000 Subject: [PATCH 378/420] mediamtx: 1.1.0 -> 1.1.1 --- pkgs/servers/mediamtx/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/mediamtx/default.nix b/pkgs/servers/mediamtx/default.nix index 1ce4681bdf63..9e9e95d67f92 100644 --- a/pkgs/servers/mediamtx/default.nix +++ b/pkgs/servers/mediamtx/default.nix @@ -6,16 +6,16 @@ buildGoModule rec { pname = "mediamtx"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitHub { owner = "bluenviron"; repo = pname; rev = "v${version}"; - hash = "sha256-XD7m6vp7Xu/Fmtv9smzz+zwVosP8UAOUkE+6KRAfVMQ="; + hash = "sha256-VIXrptVF5kjjz9vHqqjAM5gYk2o/wkUvudXixCloPgE="; }; - vendorHash = "sha256-Mnyc7PL6nUyoCnS6Mm+EGsxV8ciq0x4GXdbwslOs9hw="; + vendorHash = "sha256-bUZU9I2lqjMOupkCQKSfdrWsBYmAVrLEXod0l+J3p6g="; # Tests need docker doCheck = false; From 3793c401846cbd2c724335b9bc7d7dc5226a7714 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 5 Oct 2023 00:59:31 +0000 Subject: [PATCH 379/420] teams-for-linux: 1.3.11 -> 1.3.13 --- .../instant-messengers/teams-for-linux/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix b/pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix index e4dc6bc49100..157df8ca9a65 100644 --- a/pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix +++ b/pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix @@ -19,18 +19,18 @@ stdenv.mkDerivation (finalAttrs: { pname = "teams-for-linux"; - version = "1.3.11"; + version = "1.3.13"; src = fetchFromGitHub { owner = "IsmaelMartinez"; repo = "teams-for-linux"; rev = "v${finalAttrs.version}"; - hash = "sha256-xSNjAao8pv3jGRK68bkwGy0vo3nm8KRZjTtCEge4kHs="; + hash = "sha256-WF2jWP6utopAMZPP/ZWOhqVGZJmACwHyLLE+HQaHJjg="; }; offlineCache = fetchYarnDeps { yarnLock = "${finalAttrs.src}/yarn.lock"; - hash = "sha256-j5N6d270myUylDVDFQTScbsGp1wlpt5sISDJBRCV/GU="; + hash = "sha256-vgjPGO5qa4IYfW1svClJ+wP/KtIFFd3P02T2sht69C8="; }; nativeBuildInputs = [ yarn fixup_yarn_lock nodejs copyDesktopItems makeWrapper ]; From 492414af5f848c51ed5073e2f5b6556f3d2782cc Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 15:19:55 -0300 Subject: [PATCH 380/420] treewide: remove cstrahan from meta.maintainers - part 1 All the packages here are now orphaned. --- pkgs/applications/editors/bviplus/default.nix | 2 +- pkgs/applications/editors/hexcurse/default.nix | 2 +- pkgs/applications/editors/ht/default.nix | 2 +- pkgs/applications/misc/rescuetime/default.nix | 2 +- pkgs/applications/misc/resp-app/default.nix | 2 +- pkgs/applications/misc/terminal-notifier/default.nix | 2 +- pkgs/applications/misc/zathura/pdf-mupdf/default.nix | 2 +- pkgs/applications/misc/zathura/pdf-poppler/default.nix | 2 +- pkgs/applications/misc/zathura/ps/default.nix | 2 +- pkgs/applications/networking/cluster/cni/plugins.nix | 2 +- .../rxvt-unicode-plugins/urxvt-font-size/default.nix | 2 +- .../rxvt-unicode-plugins/urxvt-perl/default.nix | 2 +- pkgs/applications/version-management/vcprompt/default.nix | 2 +- pkgs/data/icons/vanilla-dmz/default.nix | 2 +- pkgs/development/libraries/backward-cpp/default.nix | 2 +- pkgs/development/libraries/capnproto/default.nix | 2 +- pkgs/development/libraries/keybinder3/default.nix | 2 +- pkgs/development/libraries/libmx/default.nix | 2 +- pkgs/development/libraries/libtsm/default.nix | 2 +- pkgs/development/libraries/libuchardet/default.nix | 2 +- pkgs/development/libraries/libuv/default.nix | 2 +- pkgs/development/libraries/lightstep-tracer-cpp/default.nix | 2 +- pkgs/development/libraries/linenoise-ng/default.nix | 2 +- pkgs/development/libraries/mailcore2/default.nix | 2 +- pkgs/development/tools/go-bindata/default.nix | 2 +- pkgs/development/tools/misc/chruby/default.nix | 2 +- pkgs/misc/cups/drivers/cnijfilter2/default.nix | 2 +- pkgs/misc/mnemonicode/default.nix | 2 +- pkgs/os-specific/linux/eventstat/default.nix | 2 +- pkgs/os-specific/linux/iomelt/default.nix | 2 +- pkgs/os-specific/linux/mbpfan/default.nix | 2 +- pkgs/os-specific/linux/pipework/default.nix | 2 +- pkgs/os-specific/linux/xsensors/default.nix | 2 +- pkgs/servers/http/spawn-fcgi/default.nix | 2 +- pkgs/servers/meteor/default.nix | 2 +- pkgs/servers/x11/xquartz/default.nix | 2 +- pkgs/tools/X11/go-sct/default.nix | 2 +- pkgs/tools/admin/rset/default.nix | 2 +- pkgs/tools/misc/dbus-map/default.nix | 2 +- pkgs/tools/misc/logstash/contrib.nix | 2 +- pkgs/tools/misc/xsel/default.nix | 2 +- pkgs/tools/networking/biosdevname/default.nix | 2 +- pkgs/tools/package-management/apt/default.nix | 2 +- pkgs/tools/security/lastpass-cli/default.nix | 2 +- pkgs/tools/system/nq/default.nix | 2 +- pkgs/tools/system/psensor/default.nix | 2 +- pkgs/tools/system/xe/default.nix | 2 +- 47 files changed, 47 insertions(+), 47 deletions(-) diff --git a/pkgs/applications/editors/bviplus/default.nix b/pkgs/applications/editors/bviplus/default.nix index f56fe637f83f..1cffe049c73d 100644 --- a/pkgs/applications/editors/bviplus/default.nix +++ b/pkgs/applications/editors/bviplus/default.nix @@ -34,6 +34,6 @@ stdenv.mkDerivation rec { homepage = "https://bviplus.sourceforge.net"; license = licenses.gpl3; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/editors/hexcurse/default.nix b/pkgs/applications/editors/hexcurse/default.nix index 715693770c55..1c2e09695e5e 100644 --- a/pkgs/applications/editors/hexcurse/default.nix +++ b/pkgs/applications/editors/hexcurse/default.nix @@ -46,6 +46,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/LonnyGomes/hexcurse"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/editors/ht/default.nix b/pkgs/applications/editors/ht/default.nix index 42b3f1495a31..c8a13738c910 100644 --- a/pkgs/applications/editors/ht/default.nix +++ b/pkgs/applications/editors/ht/default.nix @@ -24,6 +24,6 @@ stdenv.mkDerivation rec { homepage = "https://hte.sourceforge.net"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index ea97f8305fee..22a1964e466d 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -52,7 +52,7 @@ in mkDerivation rec { meta = with lib; { description = "Helps you understand your daily habits so you can focus and be more productive"; homepage = "https://www.rescuetime.com"; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" ]; diff --git a/pkgs/applications/misc/resp-app/default.nix b/pkgs/applications/misc/resp-app/default.nix index e9781d40db7b..b95bc98fdd3a 100644 --- a/pkgs/applications/misc/resp-app/default.nix +++ b/pkgs/applications/misc/resp-app/default.nix @@ -98,6 +98,6 @@ mkDerivation rec { homepage = "https://resp.app/"; license = licenses.gpl3Only; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/misc/terminal-notifier/default.nix b/pkgs/applications/misc/terminal-notifier/default.nix index cde53ef41654..19370fae0133 100644 --- a/pkgs/applications/misc/terminal-notifier/default.nix +++ b/pkgs/applications/misc/terminal-notifier/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ''; meta = with lib; { - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; homepage = "https://github.com/julienXX/terminal-notifier"; license = licenses.mit; platforms = platforms.darwin; diff --git a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix index 25856f0e58df..002c753caff0 100644 --- a/pkgs/applications/misc/zathura/pdf-mupdf/default.nix +++ b/pkgs/applications/misc/zathura/pdf-mupdf/default.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation rec { ''; license = licenses.zlib; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/misc/zathura/pdf-poppler/default.nix b/pkgs/applications/misc/zathura/pdf-poppler/default.nix index 57f33559c667..e482241bbd6c 100644 --- a/pkgs/applications/misc/zathura/pdf-poppler/default.nix +++ b/pkgs/applications/misc/zathura/pdf-poppler/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { ''; license = licenses.zlib; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/misc/zathura/ps/default.nix b/pkgs/applications/misc/zathura/ps/default.nix index 151a63af33e8..180001b52aeb 100644 --- a/pkgs/applications/misc/zathura/ps/default.nix +++ b/pkgs/applications/misc/zathura/ps/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ''; license = licenses.zlib; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix index ce6aece37803..8421c3157e5e 100644 --- a/pkgs/applications/networking/cluster/cni/plugins.nix +++ b/pkgs/applications/networking/cluster/cni/plugins.nix @@ -48,6 +48,6 @@ buildGoModule rec { homepage = "https://www.cni.dev/plugins/"; license = licenses.asl20; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ] ++ teams.podman.members; + maintainers = with maintainers; [ ] ++ teams.podman.members; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix index 7824fa2a814b..ac2a5f09fb0f 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { description = "Change the urxvt font size on the fly"; homepage = "https://github.com/majutsushi/urxvt-font-size"; license = licenses.mit; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix index 9ecaffb185cc..f30507483fac 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { description = "Perl extensions for the rxvt-unicode terminal emulator"; homepage = "https://github.com/effigies/urxvt-perl"; license = licenses.gpl3; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/applications/version-management/vcprompt/default.nix b/pkgs/applications/version-management/vcprompt/default.nix index d98f94477256..d4a4889f4a3f 100644 --- a/pkgs/applications/version-management/vcprompt/default.nix +++ b/pkgs/applications/version-management/vcprompt/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { about the current working directory for various version control systems ''; homepage = "http://hg.gerg.ca/vcprompt"; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; linux ++ darwin; license = licenses.gpl2Plus; }; diff --git a/pkgs/data/icons/vanilla-dmz/default.nix b/pkgs/data/icons/vanilla-dmz/default.nix index 22b66b1c65dc..6e391aa19ef0 100644 --- a/pkgs/data/icons/vanilla-dmz/default.nix +++ b/pkgs/data/icons/vanilla-dmz/default.nix @@ -56,6 +56,6 @@ stdenvNoCC.mkDerivation rec { description = "A style neutral scalable cursor theme"; platforms = platforms.all; license = licenses.cc-by-sa-30; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/libraries/backward-cpp/default.nix b/pkgs/development/libraries/backward-cpp/default.nix index 125e3799f572..15556a4108c6 100644 --- a/pkgs/development/libraries/backward-cpp/default.nix +++ b/pkgs/development/libraries/backward-cpp/default.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/bombela/backward-cpp"; license = licenses.mit; platforms = platforms.all; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/libraries/capnproto/default.nix b/pkgs/development/libraries/capnproto/default.nix index 809980c0b510..05e80893ebb0 100644 --- a/pkgs/development/libraries/capnproto/default.nix +++ b/pkgs/development/libraries/capnproto/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation rec { ''; license = licenses.mit; platforms = platforms.all; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/libraries/keybinder3/default.nix b/pkgs/development/libraries/keybinder3/default.nix index cee48d5e9eff..e7bbd2b131d5 100644 --- a/pkgs/development/libraries/keybinder3/default.nix +++ b/pkgs/development/libraries/keybinder3/default.nix @@ -39,6 +39,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/kupferlauncher/keybinder/"; license = licenses.mit; platforms = platforms.unix; - maintainers = [ maintainers.cstrahan ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/libraries/libmx/default.nix b/pkgs/development/libraries/libmx/default.nix index 23cb00618055..52d92840a346 100644 --- a/pkgs/development/libraries/libmx/default.nix +++ b/pkgs/development/libraries/libmx/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { feature is the possibility setting style properties from a CSS format file.''; license = licenses.lgpl21; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; linux; }; } diff --git a/pkgs/development/libraries/libtsm/default.nix b/pkgs/development/libraries/libtsm/default.nix index 7c0868509f09..75773296fab2 100644 --- a/pkgs/development/libraries/libtsm/default.nix +++ b/pkgs/development/libraries/libtsm/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { description = "Terminal-emulator State Machine"; homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; license = licenses.mit; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/libuchardet/default.nix b/pkgs/development/libraries/libuchardet/default.nix index 389aa7c283f2..14bf7f7c09c7 100644 --- a/pkgs/development/libraries/libuchardet/default.nix +++ b/pkgs/development/libraries/libuchardet/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = "Mozilla's Universal Charset Detector C/C++ API"; homepage = "https://www.freedesktop.org/wiki/Software/uchardet/"; license = licenses.mpl11; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index 113f83c1fc92..7be9bee23a25 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -113,7 +113,7 @@ stdenv.mkDerivation (finalAttrs: { description = "A multi-platform support library with a focus on asynchronous I/O"; homepage = "https://libuv.org/"; changelog = "https://github.com/libuv/libuv/blob/v${finalAttrs.version}/ChangeLog"; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = platforms.all; license = with licenses; [ mit isc bsd2 bsd3 cc-by-40 ]; }; diff --git a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix index 8ef4513a18dd..888e10d6a81d 100644 --- a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix +++ b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix @@ -31,6 +31,6 @@ stdenv.mkDerivation rec { homepage = "https://lightstep.com/"; license = licenses.mit; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/libraries/linenoise-ng/default.nix b/pkgs/development/libraries/linenoise-ng/default.nix index d19d6748147c..276756822746 100644 --- a/pkgs/development/libraries/linenoise-ng/default.nix +++ b/pkgs/development/libraries/linenoise-ng/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meta = { homepage = "https://github.com/arangodb/linenoise-ng"; description = "A small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters"; - maintainers = with lib.maintainers; [ cstrahan ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.all; license = lib.licenses.bsd3; }; diff --git a/pkgs/development/libraries/mailcore2/default.nix b/pkgs/development/libraries/mailcore2/default.nix index 65e35217f80a..77e7669c0e12 100644 --- a/pkgs/development/libraries/mailcore2/default.nix +++ b/pkgs/development/libraries/mailcore2/default.nix @@ -54,6 +54,6 @@ stdenv.mkDerivation rec { description = "A simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP"; homepage = "http://libmailcore.com"; license = licenses.bsd3; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/development/tools/go-bindata/default.nix b/pkgs/development/tools/go-bindata/default.nix index e08cab6a0f95..5d3e5d714f25 100644 --- a/pkgs/development/tools/go-bindata/default.nix +++ b/pkgs/development/tools/go-bindata/default.nix @@ -21,7 +21,7 @@ buildGoModule rec { homepage = "https://github.com/kevinburke/go-bindata"; changelog = "https://github.com/kevinburke/go-bindata/blob/v${version}/CHANGELOG.md"; description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program"; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; license = licenses.cc0; }; } diff --git a/pkgs/development/tools/misc/chruby/default.nix b/pkgs/development/tools/misc/chruby/default.nix index cbe223513272..31e7134e7e87 100644 --- a/pkgs/development/tools/misc/chruby/default.nix +++ b/pkgs/development/tools/misc/chruby/default.nix @@ -37,7 +37,7 @@ in stdenv.mkDerivation rec { description = "Changes the current Ruby"; homepage = "https://github.com/postmodern/chruby"; license = licenses.mit; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; mainProgram = "chruby-exec"; platforms = platforms.unix; }; diff --git a/pkgs/misc/cups/drivers/cnijfilter2/default.nix b/pkgs/misc/cups/drivers/cnijfilter2/default.nix index 8390d5e0ba84..8520ba7aff2e 100644 --- a/pkgs/misc/cups/drivers/cnijfilter2/default.nix +++ b/pkgs/misc/cups/drivers/cnijfilter2/default.nix @@ -145,6 +145,6 @@ stdenv.mkDerivation { homepage = "https://hk.canon/en/support/0101048401/1"; license = licenses.unfree; platforms = [ "i686-linux" "x86_64-linux" ]; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/misc/mnemonicode/default.nix b/pkgs/misc/mnemonicode/default.nix index 352dd038fb5a..4ecacaf418a1 100644 --- a/pkgs/misc/mnemonicode/default.nix +++ b/pkgs/misc/mnemonicode/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { ''; license = licenses.mit; platforms = platforms.all; - maintainers = [ maintainers.cstrahan ]; + maintainers = [ ]; }; } diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix index 88ac5add34a7..2c139cd3c865 100644 --- a/pkgs/os-specific/linux/eventstat/default.nix +++ b/pkgs/os-specific/linux/eventstat/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/ColinIanKing/eventstat"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/os-specific/linux/iomelt/default.nix b/pkgs/os-specific/linux/iomelt/default.nix index 860a7b446328..0084a397d075 100644 --- a/pkgs/os-specific/linux/iomelt/default.nix +++ b/pkgs/os-specific/linux/iomelt/default.nix @@ -20,7 +20,7 @@ in stdenv.mkDerivation { meta = with lib; { description = "A simple yet effective way to benchmark disk IO in Linux systems"; homepage = "http://www.iomelt.com"; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; license = licenses.artistic2; platforms = platforms.linux; }; diff --git a/pkgs/os-specific/linux/mbpfan/default.nix b/pkgs/os-specific/linux/mbpfan/default.nix index 9a56249de39a..50fc74d7fa0a 100644 --- a/pkgs/os-specific/linux/mbpfan/default.nix +++ b/pkgs/os-specific/linux/mbpfan/default.nix @@ -19,6 +19,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/dgraziotin/mbpfan"; license = licenses.gpl3; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/os-specific/linux/pipework/default.nix b/pkgs/os-specific/linux/pipework/default.nix index ea274377ced9..3591303a8d0c 100644 --- a/pkgs/os-specific/linux/pipework/default.nix +++ b/pkgs/os-specific/linux/pipework/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { homepage = "https://github.com/jpetazzo/pipework"; license = licenses.asl20; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/os-specific/linux/xsensors/default.nix b/pkgs/os-specific/linux/xsensors/default.nix index 02ce560d8a94..e3639fefffa4 100644 --- a/pkgs/os-specific/linux/xsensors/default.nix +++ b/pkgs/os-specific/linux/xsensors/default.nix @@ -18,6 +18,6 @@ stdenv.mkDerivation rec { meta = with lib; { license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/servers/http/spawn-fcgi/default.nix b/pkgs/servers/http/spawn-fcgi/default.nix index 77272694a89d..c57cc816524d 100644 --- a/pkgs/servers/http/spawn-fcgi/default.nix +++ b/pkgs/servers/http/spawn-fcgi/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { homepage = "https://redmine.lighttpd.net/projects/spawn-fcgi"; description = "Provides an interface to external programs that support the FastCGI interface"; license = licenses.bsd3; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix index 04f0ac3ac807..868c420d49ae 100644 --- a/pkgs/servers/meteor/default.nix +++ b/pkgs/servers/meteor/default.nix @@ -97,6 +97,6 @@ stdenv.mkDerivation { sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.mit; platforms = builtins.attrNames srcs; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/servers/x11/xquartz/default.nix b/pkgs/servers/x11/xquartz/default.nix index cdb2122a612d..93b2869f8d2b 100644 --- a/pkgs/servers/x11/xquartz/default.nix +++ b/pkgs/servers/x11/xquartz/default.nix @@ -177,7 +177,7 @@ in stdenv.mkDerivation { meta = with lib; { platforms = platforms.darwin; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; license = licenses.mit; }; } diff --git a/pkgs/tools/X11/go-sct/default.nix b/pkgs/tools/X11/go-sct/default.nix index d52cd046da9f..585e28971b49 100644 --- a/pkgs/tools/X11/go-sct/default.nix +++ b/pkgs/tools/X11/go-sct/default.nix @@ -26,7 +26,7 @@ buildGoModule rec { description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; homepage = "https://github.com/d4l3k/go-sct"; license = licenses.mit; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; mainProgram = "sct"; }; } diff --git a/pkgs/tools/admin/rset/default.nix b/pkgs/tools/admin/rset/default.nix index f7c00fffb1cc..e164e133f985 100644 --- a/pkgs/tools/admin/rset/default.nix +++ b/pkgs/tools/admin/rset/default.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/eradman/rset/raw/${version}/NEWS"; license = licenses.isc; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/misc/dbus-map/default.nix b/pkgs/tools/misc/dbus-map/default.nix index 5960ba5c5731..56f89b2f0531 100644 --- a/pkgs/tools/misc/dbus-map/default.nix +++ b/pkgs/tools/misc/dbus-map/default.nix @@ -22,6 +22,6 @@ stdenv.mkDerivation { homepage = "https://github.com/taviso/dbusmap"; license = licenses.gpl2; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/misc/logstash/contrib.nix b/pkgs/tools/misc/logstash/contrib.nix index d4c88dc32ed4..2d2f6272fddf 100644 --- a/pkgs/tools/misc/logstash/contrib.nix +++ b/pkgs/tools/misc/logstash/contrib.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/elasticsearch/logstash-contrib"; license = lib.licenses.asl20; platforms = lib.platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/misc/xsel/default.nix b/pkgs/tools/misc/xsel/default.nix index 69061eb15b8b..e886ff331a2a 100644 --- a/pkgs/tools/misc/xsel/default.nix +++ b/pkgs/tools/misc/xsel/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { description = "Command-line program for getting and setting the contents of the X selection"; homepage = "http://www.kfish.org/software/xsel"; license = licenses.mit; - maintainers = [ maintainers.cstrahan ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/tools/networking/biosdevname/default.nix b/pkgs/tools/networking/biosdevname/default.nix index f44574fb0364..0f7702acdcc8 100644 --- a/pkgs/tools/networking/biosdevname/default.nix +++ b/pkgs/tools/networking/biosdevname/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { description = "Udev helper for naming devices per BIOS names"; license = licenses.gpl2; platforms = ["x86_64-linux" "i686-linux"]; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/package-management/apt/default.nix b/pkgs/tools/package-management/apt/default.nix index 74676827fb95..60bd420f1548 100644 --- a/pkgs/tools/package-management/apt/default.nix +++ b/pkgs/tools/package-management/apt/default.nix @@ -82,6 +82,6 @@ stdenv.mkDerivation rec { changelog = "https://salsa.debian.org/apt-team/apt/-/raw/${version}/debian/changelog"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/security/lastpass-cli/default.nix b/pkgs/tools/security/lastpass-cli/default.nix index 45333391de04..c20157cb4194 100644 --- a/pkgs/tools/security/lastpass-cli/default.nix +++ b/pkgs/tools/security/lastpass-cli/default.nix @@ -57,6 +57,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/lastpass/lastpass-cli"; license = licenses.gpl2Plus; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/system/nq/default.nix b/pkgs/tools/system/nq/default.nix index 133ce941faa5..46db1c612ff3 100644 --- a/pkgs/tools/system/nq/default.nix +++ b/pkgs/tools/system/nq/default.nix @@ -20,6 +20,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/chneukirchen/nq"; license = licenses.publicDomain; platforms = platforms.all; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/system/psensor/default.nix b/pkgs/tools/system/psensor/default.nix index 6e3ccc45a034..33749f30be0c 100644 --- a/pkgs/tools/system/psensor/default.nix +++ b/pkgs/tools/system/psensor/default.nix @@ -28,6 +28,6 @@ stdenv.mkDerivation rec { homepage = "https://wpitchoune.net/psensor/"; license = licenses.mit; platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } diff --git a/pkgs/tools/system/xe/default.nix b/pkgs/tools/system/xe/default.nix index f31cdaab4c5a..133c7d873619 100644 --- a/pkgs/tools/system/xe/default.nix +++ b/pkgs/tools/system/xe/default.nix @@ -18,6 +18,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/chneukirchen/xe"; license = licenses.publicDomain; platforms = platforms.all; - maintainers = with maintainers; [ cstrahan ]; + maintainers = with maintainers; [ ]; }; } From a9d73dea164c074ac14f2b2d7bdba0d78c36da49 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 19:29:36 -0300 Subject: [PATCH 381/420] treewide: remove cstrahan from meta.maintainers - part 2 19 files modified with this removal --- pkgs/applications/editors/vim/macvim.nix | 2 +- pkgs/applications/misc/perkeep/default.nix | 2 +- pkgs/applications/networking/browsers/w3m/default.nix | 2 +- pkgs/applications/networking/mailreaders/neomutt/default.nix | 2 +- pkgs/data/fonts/iosevka/bin.nix | 1 - pkgs/data/fonts/iosevka/default.nix | 1 - pkgs/development/compilers/rust/rustc.nix | 2 +- pkgs/development/libraries/rapidjson/default.nix | 2 +- pkgs/development/libraries/v8/default.nix | 2 +- pkgs/development/python-modules/jupyterhub/default.nix | 2 +- pkgs/development/python-modules/pycapnp/default.nix | 2 +- pkgs/development/tools/misc/ycmd/default.nix | 2 +- pkgs/development/tools/packer/default.nix | 2 +- pkgs/development/tools/watchman/default.nix | 2 +- pkgs/servers/nosql/mongodb/mongodb.nix | 2 +- pkgs/servers/zookeeper/default.nix | 2 +- pkgs/tools/filesystems/zkfuse/default.nix | 2 +- pkgs/tools/security/doas/default.nix | 2 +- pkgs/tools/security/mkpasswd/default.nix | 2 +- 19 files changed, 17 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/editors/vim/macvim.nix b/pkgs/applications/editors/vim/macvim.nix index 8440d1fd6d9c..ce83128e98b1 100644 --- a/pkgs/applications/editors/vim/macvim.nix +++ b/pkgs/applications/editors/vim/macvim.nix @@ -180,7 +180,7 @@ stdenv.mkDerivation { description = "Vim - the text editor - for macOS"; homepage = "https://github.com/macvim-dev/macvim"; license = licenses.vim; - maintainers = with maintainers; [ cstrahan lilyball ]; + maintainers = with maintainers; [ lilyball ]; platforms = platforms.darwin; hydraPlatforms = []; # hydra can't build this as long as we rely on Xcode and sandboxProfile }; diff --git a/pkgs/applications/misc/perkeep/default.nix b/pkgs/applications/misc/perkeep/default.nix index 7ce8b03c08b5..da67c39ab585 100644 --- a/pkgs/applications/misc/perkeep/default.nix +++ b/pkgs/applications/misc/perkeep/default.nix @@ -55,6 +55,6 @@ buildGoModule rec { description = "A way of storing, syncing, sharing, modelling and backing up content (née Camlistore)"; homepage = "https://perkeep.org"; license = licenses.asl20; - maintainers = with maintainers; [ cstrahan danderson kalbasit ]; + maintainers = with maintainers; [ danderson kalbasit ]; }; } diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix index e4a064e79059..5d2ea47b34c6 100644 --- a/pkgs/applications/networking/browsers/w3m/default.nix +++ b/pkgs/applications/networking/browsers/w3m/default.nix @@ -95,7 +95,7 @@ in stdenv.mkDerivation rec { homepage = "https://w3m.sourceforge.net/"; changelog = "https://github.com/tats/w3m/blob/v${version}/ChangeLog"; description = "A text-mode web browser"; - maintainers = with maintainers; [ cstrahan anthonyroussel ]; + maintainers = with maintainers; [ anthonyroussel ]; platforms = platforms.unix; license = licenses.mit; mainProgram = "w3m"; diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix index d57f0a0b1fac..9ac8c83dc5e7 100644 --- a/pkgs/applications/networking/mailreaders/neomutt/default.nix +++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix @@ -118,7 +118,7 @@ stdenv.mkDerivation rec { description = "A small but very powerful text-based mail client"; homepage = "http://www.neomutt.org"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ cstrahan erikryb jfrankenau vrthra ma27 raitobezarius ]; + maintainers = with maintainers; [ erikryb jfrankenau vrthra ma27 raitobezarius ]; platforms = platforms.unix; }; } diff --git a/pkgs/data/fonts/iosevka/bin.nix b/pkgs/data/fonts/iosevka/bin.nix index dc7d132884c4..b8dc77e94098 100644 --- a/pkgs/data/fonts/iosevka/bin.nix +++ b/pkgs/data/fonts/iosevka/bin.nix @@ -33,7 +33,6 @@ in stdenv.mkDerivation rec { meta = { inherit (iosevka.meta) homepage downloadPage description license platforms; maintainers = with lib.maintainers; [ - cstrahan montchr ]; }; diff --git a/pkgs/data/fonts/iosevka/default.nix b/pkgs/data/fonts/iosevka/default.nix index 8e33e721f971..0fa8bdb8f818 100644 --- a/pkgs/data/fonts/iosevka/default.nix +++ b/pkgs/data/fonts/iosevka/default.nix @@ -136,7 +136,6 @@ buildNpmPackage rec { license = licenses.ofl; platforms = platforms.all; maintainers = with maintainers; [ - cstrahan jfrankenau ttuegel babariviere diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 869dd15df0be..0cf5020962cf 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -263,7 +263,7 @@ in stdenv.mkDerivation rec { meta = with lib; { homepage = "https://www.rust-lang.org/"; description = "A safe, concurrent, practical language"; - maintainers = with maintainers; [ cstrahan globin havvy ] ++ teams.rust.members; + maintainers = with maintainers; [ globin havvy ] ++ teams.rust.members; license = [ licenses.mit licenses.asl20 ]; platforms = [ # Platforms with host tools from diff --git a/pkgs/development/libraries/rapidjson/default.nix b/pkgs/development/libraries/rapidjson/default.nix index f73e01b64764..d3233384d3eb 100644 --- a/pkgs/development/libraries/rapidjson/default.nix +++ b/pkgs/development/libraries/rapidjson/default.nix @@ -51,6 +51,6 @@ stdenv.mkDerivation rec { homepage = "http://rapidjson.org/"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ cstrahan dotlambda ]; + maintainers = with maintainers; [ dotlambda ]; }; } diff --git a/pkgs/development/libraries/v8/default.nix b/pkgs/development/libraries/v8/default.nix index 73ff84034006..a9891a9d328c 100644 --- a/pkgs/development/libraries/v8/default.nix +++ b/pkgs/development/libraries/v8/default.nix @@ -174,7 +174,7 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://v8.dev/"; description = "Google's open source JavaScript engine"; - maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ]; + maintainers = with maintainers; [ proglodyte matthewbauer ]; platforms = platforms.unix; license = licenses.bsd3; }; diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix index 3f16022e2163..d6bdedc992ae 100644 --- a/pkgs/development/python-modules/jupyterhub/default.nix +++ b/pkgs/development/python-modules/jupyterhub/default.nix @@ -201,7 +201,7 @@ buildPythonPackage rec { homepage = "https://jupyter.org/"; changelog = "https://github.com/jupyterhub/jupyterhub/blob/${version}/docs/source/reference/changelog.md"; license = licenses.bsd3; - maintainers = with maintainers; [ ixxie cstrahan ]; + maintainers = with maintainers; [ ixxie ]; # darwin: E OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; }; diff --git a/pkgs/development/python-modules/pycapnp/default.nix b/pkgs/development/python-modules/pycapnp/default.nix index fc41822cebe3..64385cfd59cd 100644 --- a/pkgs/development/python-modules/pycapnp/default.nix +++ b/pkgs/development/python-modules/pycapnp/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://capnproto.github.io/pycapnp/"; - maintainers = with maintainers; [ cstrahan lukeadams ]; + maintainers = with maintainers; [ lukeadams ]; license = licenses.bsd2; # No support for capnproto 1.0 yet # https://github.com/capnproto/pycapnp/issues/323 diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix index e09ecac29b3a..f281a70f8029 100644 --- a/pkgs/development/tools/misc/ycmd/default.nix +++ b/pkgs/development/tools/misc/ycmd/default.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation { description = "A code-completion and comprehension server"; homepage = "https://github.com/ycm-core/ycmd"; license = licenses.gpl3; - maintainers = with maintainers; [ rasendubi cstrahan lnl7 siriobalmelli ]; + maintainers = with maintainers; [ rasendubi lnl7 siriobalmelli ]; platforms = platforms.all; }; } diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix index 18dd6370bc78..5d948190ee19 100644 --- a/pkgs/development/tools/packer/default.nix +++ b/pkgs/development/tools/packer/default.nix @@ -31,7 +31,7 @@ buildGoModule rec { description = "A tool for creating identical machine images for multiple platforms from a single source configuration"; homepage = "https://www.packer.io"; license = licenses.mpl20; - maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick qjoly ]; + maintainers = with maintainers; [ zimbatm ma27 techknowlogick qjoly ]; changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md"; }; } diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index 6bd12510c13d..973a48a84bc8 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Watches files and takes action when they change"; homepage = "https://facebook.github.io/watchman"; - maintainers = with maintainers; [ cstrahan kylesferrazza ]; + maintainers = with maintainers; [ kylesferrazza ]; platforms = platforms.unix; license = licenses.mit; }; diff --git a/pkgs/servers/nosql/mongodb/mongodb.nix b/pkgs/servers/nosql/mongodb/mongodb.nix index ff82755d8cd7..5be49f18891f 100644 --- a/pkgs/servers/nosql/mongodb/mongodb.nix +++ b/pkgs/servers/nosql/mongodb/mongodb.nix @@ -190,7 +190,7 @@ in stdenv.mkDerivation rec { homepage = "http://www.mongodb.org"; inherit license; - maintainers = with maintainers; [ bluescreen303 offline cstrahan ]; + maintainers = with maintainers; [ bluescreen303 offline ]; platforms = subtractLists systems.doubles.i686 systems.doubles.unix; broken = (versionOlder version "6.0" && stdenv.system == "aarch64-darwin"); }; diff --git a/pkgs/servers/zookeeper/default.nix b/pkgs/servers/zookeeper/default.nix index d333494ea35d..1df644b9fbe7 100644 --- a/pkgs/servers/zookeeper/default.nix +++ b/pkgs/servers/zookeeper/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { homepage = "https://zookeeper.apache.org"; description = "Apache Zookeeper"; license = licenses.asl20; - maintainers = with maintainers; [ nathan-gs cstrahan pradeepchhetri ztzg ]; + maintainers = with maintainers; [ nathan-gs pradeepchhetri ztzg ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/filesystems/zkfuse/default.nix b/pkgs/tools/filesystems/zkfuse/default.nix index c58dbff9ac73..320ccde4cc53 100644 --- a/pkgs/tools/filesystems/zkfuse/default.nix +++ b/pkgs/tools/filesystems/zkfuse/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { meta = with lib; { platforms = platforms.linux; - maintainers = with maintainers; [ cstrahan ztzg ]; + maintainers = with maintainers; [ ztzg ]; license = licenses.asl20; }; } diff --git a/pkgs/tools/security/doas/default.nix b/pkgs/tools/security/doas/default.nix index ad08cd8056be..03268bc98479 100644 --- a/pkgs/tools/security/doas/default.nix +++ b/pkgs/tools/security/doas/default.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/Duncaen/OpenDoas"; license = licenses.isc; platforms = platforms.linux; - maintainers = with maintainers; [ cole-h cstrahan ]; + maintainers = with maintainers; [ cole-h ]; }; } diff --git a/pkgs/tools/security/mkpasswd/default.nix b/pkgs/tools/security/mkpasswd/default.nix index 439fd1543cf8..38c26a93b4e3 100644 --- a/pkgs/tools/security/mkpasswd/default.nix +++ b/pkgs/tools/security/mkpasswd/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { homepage = "https://packages.qa.debian.org/w/whois.html"; description = "Overfeatured front-end to crypt, from the Debian whois package"; license = licenses.gpl2; - maintainers = with maintainers; [ cstrahan fpletz ]; + maintainers = with maintainers; [ fpletz ]; platforms = platforms.unix; }; } From 2f38016681fdde5c7e8e2e81138f8a9e2d184ce5 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 19:30:50 -0300 Subject: [PATCH 382/420] maintainers: remove cstrahan The last updated on the personal fork was on [2019-06-03](https://github.com/cstrahan/nixpkgs/commit/739f74d05634ec3de8e0e87734924c90babd0e87) --- maintainers/maintainer-list.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 0cddee228346..7b479b1d14ed 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3683,12 +3683,6 @@ githubId = 398996; name = "Christopher Singley"; }; - cstrahan = { - email = "charles@cstrahan.com"; - github = "cstrahan"; - githubId = 143982; - name = "Charles Strahan"; - }; cswank = { email = "craigswank@gmail.com"; github = "cswank"; From a78b6f3272b4950bb8ff932a9190e8c2683741b6 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 16:08:40 -0300 Subject: [PATCH 383/420] scrcpy: remove lukeadams from meta.maintainers --- pkgs/misc/scrcpy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/misc/scrcpy/default.nix b/pkgs/misc/scrcpy/default.nix index 9602b6364974..b43e6400c8dc 100644 --- a/pkgs/misc/scrcpy/default.nix +++ b/pkgs/misc/scrcpy/default.nix @@ -72,6 +72,6 @@ stdenv.mkDerivation rec { ]; license = licenses.asl20; platforms = platforms.unix; - maintainers = with maintainers; [ deltaevo lukeadams msfjarvis ]; + maintainers = with maintainers; [ deltaevo msfjarvis ]; }; } From 552cb9b5a4f75445ed93ab2a79d785199a2ac927 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 16:09:04 -0300 Subject: [PATCH 384/420] pycapnp: remove lukeadams from meta.maintainers --- pkgs/development/python-modules/pycapnp/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pycapnp/default.nix b/pkgs/development/python-modules/pycapnp/default.nix index 64385cfd59cd..b18fa3b3fc7f 100644 --- a/pkgs/development/python-modules/pycapnp/default.nix +++ b/pkgs/development/python-modules/pycapnp/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { meta = with lib; { homepage = "https://capnproto.github.io/pycapnp/"; - maintainers = with maintainers; [ lukeadams ]; + maintainers = with maintainers; [ ]; license = licenses.bsd2; # No support for capnproto 1.0 yet # https://github.com/capnproto/pycapnp/issues/323 From d4b04cef5197bbed1e2286d9cd0d6891738e3b65 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 16:09:44 -0300 Subject: [PATCH 385/420] maintainers: remove lukeadams The last updated on the personal fork was on [2021-05-26](https://github.com/lukeadams/nixpkgs/commit/2a6db4c056b66006804ec39d4185363d1d5f9658) --- maintainers/maintainer-list.nix | 6 ------ 1 file changed, 6 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 7b479b1d14ed..56e8b1b51022 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10344,12 +10344,6 @@ githubId = 84395723; name = "Lukas Wurzinger"; }; - lukeadams = { - email = "luke.adams@belljar.io"; - github = "lukeadams"; - githubId = 3508077; - name = "Luke Adams"; - }; lukebfox = { email = "lbentley-fox1@sheffield.ac.uk"; github = "lukebfox"; From e064688a8ffc08c63e5496fb5fccf912aabe8076 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 5 Oct 2023 01:28:42 +0000 Subject: [PATCH 386/420] meli: 0.8.1 -> 0.8.2 --- pkgs/applications/networking/mailreaders/meli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/meli/default.nix b/pkgs/applications/networking/mailreaders/meli/default.nix index 82bc21bc6f7c..1ce4c39da7a3 100644 --- a/pkgs/applications/networking/mailreaders/meli/default.nix +++ b/pkgs/applications/networking/mailreaders/meli/default.nix @@ -22,15 +22,15 @@ rustPlatform.buildRustPackage rec { pname = "meli"; - version = "0.8.1"; + version = "0.8.2"; src = fetchgit { url = "https://git.meli.delivery/meli/meli.git"; rev = "v${version}"; - hash = "sha256-sHpW2yjqYz4ePR6aQFUBD6BZwgDt3DT22/kWuKr9fAc="; + hash = "sha256-iEHTFofga/HV/1jSAqTsqV55zC22tqI7UW7m4PZgz0M="; }; - cargoSha256 = "sha256-Pg3V6Bd+drFPiJtUwsoKxu6snN88KvM+lsvnWBK/rvk="; + cargoHash = "sha256-ijlivyBezLECBSaWBYVy9tVcSO8U+yGDQyU4dIATR6k="; nativeBuildInputs = [ pkg-config From 96c84466151e2c294e47c556911bd1991a13f706 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 5 Oct 2023 03:00:53 +0000 Subject: [PATCH 387/420] python310Packages.fake-useragent: 1.2.1 -> 1.3.0 --- pkgs/development/python-modules/fake-useragent/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fake-useragent/default.nix b/pkgs/development/python-modules/fake-useragent/default.nix index c9b58a92c229..50c4f5e96837 100644 --- a/pkgs/development/python-modules/fake-useragent/default.nix +++ b/pkgs/development/python-modules/fake-useragent/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "fake-useragent"; - version = "1.2.1"; + version = "1.3.0"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "fake-useragent"; repo = "fake-useragent"; rev = "refs/tags/${version}"; - hash = "sha256-kOvVqdfK9swtjW8D7COrZksLCu1N8sQO8rzx5RZqCT0="; + hash = "sha256-erGX52ipM0scn3snICf6ipjgVbV8/H5xT4GP3AtvOwo="; }; postPatch = '' From 71e9121562cff1f1ee0ff8d21c2626e5779ba67e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 28 Sep 2023 23:55:50 +0200 Subject: [PATCH 388/420] python311Packages.aioairzone-cloud: 0.2.2 -> 0.2.4 Diff: https://github.com/Noltari/aioairzone-cloud/compare/refs/tags/0.2.2...0.2.4 Changelog: https://github.com/Noltari/aioairzone-cloud/releases/tag/0.2.4 --- pkgs/development/python-modules/aioairzone-cloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioairzone-cloud/default.nix b/pkgs/development/python-modules/aioairzone-cloud/default.nix index f69f45d7efd0..bdc21d70892f 100644 --- a/pkgs/development/python-modules/aioairzone-cloud/default.nix +++ b/pkgs/development/python-modules/aioairzone-cloud/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "aioairzone-cloud"; - version = "0.2.2"; + version = "0.2.4"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "Noltari"; repo = "aioairzone-cloud"; rev = "refs/tags/${version}"; - hash = "sha256-SGHbM7D21ykFWwg4aTUUMIFpwZ0K8CQohZYtzXOPJQg="; + hash = "sha256-7sjiY20jDUHtEnqAMwEHsBboK9XCH5XjE0sHR82YvEA="; }; nativeBuildInputs = [ From 948573bb0bf81916f2a61c76212cd810c5306256 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Sep 2023 18:54:41 +0200 Subject: [PATCH 389/420] python311Packages.aiohue: 4.6.2 -> 4.7.0 Diff: https://github.com/home-assistant-libs/aiohue/compare/refs/tags/4.6.2...4.7.0 Changelog: https://github.com/home-assistant-libs/aiohue/releases/tag/4.7.0 Co-Authored-By: Maksym Balatsko --- .../python-modules/aiohue/default.nix | 22 +++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiohue/default.nix b/pkgs/development/python-modules/aiohue/default.nix index efd590e7e827..56b911ee4f89 100644 --- a/pkgs/development/python-modules/aiohue/default.nix +++ b/pkgs/development/python-modules/aiohue/default.nix @@ -5,23 +5,35 @@ , buildPythonPackage , fetchFromGitHub , pytestCheckHook +, pytest-aiohttp +, pytest-asyncio , pythonOlder +, setuptools }: buildPythonPackage rec { pname = "aiohue"; - version = "4.6.2"; - format = "setuptools"; + version = "4.7.0"; + pyproject = true; - disabled = pythonOlder "3.8"; + disabled = pythonOlder "3.10"; src = fetchFromGitHub { owner = "home-assistant-libs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-DzslGfKwsXXWWhbTb0apJCsnNdnUe7AbvrRT8ZnPbVU="; + hash = "sha256-t48rUPAM0XpbDreCwHU/smoyhPtxhwrpDkb1170GkQM="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace 'version = "0.0.0"' 'version = "${version}"' + ''; + + nativeBuildInputs = [ + setuptools + ]; + propagatedBuildInputs = [ awesomeversion aiohttp @@ -30,6 +42,8 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook + pytest-asyncio + pytest-aiohttp ]; pythonImportsCheck = [ From ade9da151c7aa7e83f8adbde6e618eeb0384ab8c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Sep 2023 20:35:48 +0200 Subject: [PATCH 390/420] python311Packages.aiounifi: 62 -> 63 Diff: https://github.com/Kane610/aiounifi/compare/refs/tags/v62...v63 Changelog: https://github.com/Kane610/aiounifi/releases/tag/v63 --- pkgs/development/python-modules/aiounifi/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiounifi/default.nix b/pkgs/development/python-modules/aiounifi/default.nix index a906f8311f81..02e84b8f7e04 100644 --- a/pkgs/development/python-modules/aiounifi/default.nix +++ b/pkgs/development/python-modules/aiounifi/default.nix @@ -10,12 +10,13 @@ , pythonOlder , segno , setuptools +, trustme , wheel }: buildPythonPackage rec { pname = "aiounifi"; - version = "62"; + version = "63"; format = "pyproject"; disabled = pythonOlder "3.11"; @@ -24,7 +25,7 @@ buildPythonPackage rec { owner = "Kane610"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-5XCF67YuelS4RDUxfImSAELfdb3rJWGprIYQeQPp+yk="; + hash = "sha256-am11pFgYMRccUNaK/iKdp6mfk5NQ4QnU41xbFiGCMPs="; }; postPatch = '' @@ -51,6 +52,7 @@ buildPythonPackage rec { pytest-aiohttp pytest-asyncio pytestCheckHook + trustme ]; pytestFlagsArray = [ From a7642023cfff46f469517129665a5ee8b9239b4b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 Sep 2023 14:06:07 +0200 Subject: [PATCH 391/420] python3Packages.faadelays: 0.0.7 -> 2023.8.0 (cherry picked from commit 299f3a889661dd26078ee9b007af2dd597785efb) --- .../python-modules/faadelays/default.nix | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/faadelays/default.nix b/pkgs/development/python-modules/faadelays/default.nix index 22f764ad4ace..a4c391bf3a32 100644 --- a/pkgs/development/python-modules/faadelays/default.nix +++ b/pkgs/development/python-modules/faadelays/default.nix @@ -3,25 +3,38 @@ , buildPythonPackage , fetchPypi , pythonOlder +, setuptools }: buildPythonPackage rec { pname = "faadelays"; - version = "0.0.7"; + version = "2023.8.0"; + format = "pyproject"; + disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-osZqfSYlKPYZMelBR6YB331iRB4DTjCUlmX7pcrIiGk="; + hash = "sha256-VAQQI9cMRKGe7RAUxoI1bBojzRq6cRz2jpeDA+GMuUI="; }; - propagatedBuildInputs = [ aiohttp ]; + nativeBuildInputs = [ + setuptools + ]; + + propagatedBuildInputs = [ + aiohttp + ]; # Project has no tests doCheck = false; - pythonImportsCheck = [ "faadelays" ]; + + pythonImportsCheck = [ + "faadelays" + ]; meta = with lib; { + changelog = "https://github.com/ntilley905/faadelays/releases/tag/v${version}"; description = "Python package to retrieve FAA airport status"; homepage = "https://github.com/ntilley905/faadelays"; license = licenses.mit; From db398d2a38429607ce4fdeded4365892d507a65f Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 20:31:46 +0200 Subject: [PATCH 392/420] python311Packages.faadelays: 2023.8.0 -> 2023.9.1 https://github.com/ntilley905/faadelays/releases/tag/v2023.9.1 --- pkgs/development/python-modules/faadelays/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/faadelays/default.nix b/pkgs/development/python-modules/faadelays/default.nix index a4c391bf3a32..e19b3192e350 100644 --- a/pkgs/development/python-modules/faadelays/default.nix +++ b/pkgs/development/python-modules/faadelays/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "faadelays"; - version = "2023.8.0"; + version = "2023.9.1"; format = "pyproject"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; - hash = "sha256-VAQQI9cMRKGe7RAUxoI1bBojzRq6cRz2jpeDA+GMuUI="; + hash = "sha256-ngMFd+BE3hKeaeGEX4xHpzDIrtGFDsSwxBbrc4ZMFas="; }; nativeBuildInputs = [ From 2036d5395ab120340fbb3687d9e905717d0a012c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 20:34:08 +0200 Subject: [PATCH 393/420] home-assistant.intents: 2023.9.22 -> 2023.10.2 https://github.com/home-assistant/intents-package/compare/refs/tags/2023.9.22...2023.10.2 --- pkgs/servers/home-assistant/intents.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/intents.nix b/pkgs/servers/home-assistant/intents.nix index 6d894aa0c9be..5f815628a50f 100644 --- a/pkgs/servers/home-assistant/intents.nix +++ b/pkgs/servers/home-assistant/intents.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "home-assistant-intents"; - version = "2023.9.22"; + version = "2023.10.2"; format = "pyproject"; disabled = pythonOlder "3.9"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "home-assistant"; repo = "intents-package"; rev = "refs/tags/${version}"; - hash = "sha256-n0IIWS5edh4XD/W9Eo88pal2+zJQtrHg74FSGvPIlPg="; + hash = "sha256-4zaMDYHrUape+s9Z1nfGpud74pbkAeKBpJtmIyLdCjk="; fetchSubmodules = true; }; From abc67d9b38e3b11862f401f839525326c7c43936 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 22:46:43 +0200 Subject: [PATCH 394/420] python311Packages.matrix-nio: 0.20.1 -> 0.21.2 https://github.com/poljar/matrix-nio/blob/0.21.2/CHANGELOG.md --- pkgs/development/python-modules/matrix-nio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/matrix-nio/default.nix b/pkgs/development/python-modules/matrix-nio/default.nix index 03bc6015843d..77f47543c52a 100644 --- a/pkgs/development/python-modules/matrix-nio/default.nix +++ b/pkgs/development/python-modules/matrix-nio/default.nix @@ -29,14 +29,14 @@ buildPythonPackage rec { pname = "matrix-nio"; - version = "0.20.1"; + version = "0.21.2"; format = "pyproject"; src = fetchFromGitHub { owner = "poljar"; repo = "matrix-nio"; rev = version; - hash = "sha256-6oMOfyl8yR8FMprPYD831eiXh9g/bqslvxDmVcrNK80="; + hash = "sha256-eK5DPmPZ/hv3i3lzoIuS9sJXKpUNhmBv4+Nw2u/RZi0="; }; postPatch = '' From fccf689445202cfa336431fc0119efc08a2cef8b Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 22:47:15 +0200 Subject: [PATCH 395/420] python311Packages.plexapi: 4.15.3 -> 4.15.4 https://github.com/pkkid/python-plexapi/releases/tag/4.15.4 --- pkgs/development/python-modules/plexapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/plexapi/default.nix b/pkgs/development/python-modules/plexapi/default.nix index d2ecca94cb4d..57b4cb430b77 100644 --- a/pkgs/development/python-modules/plexapi/default.nix +++ b/pkgs/development/python-modules/plexapi/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "plexapi"; - version = "4.15.3"; + version = "4.15.4"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "pkkid"; repo = "python-plexapi"; rev = "refs/tags/${version}"; - hash = "sha256-3Rnwo6KpOsfrIWmJjxh1DSDFoVqBckB0uZh5PdsjRO8="; + hash = "sha256-NBV4jrLfU5vqQljQh28tJxgaNSo/ilph8xsjdVKCOJg="; }; propagatedBuildInputs = [ From 3340f02c680b6267623ebca46411b1aa59ef331e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 22:55:20 +0200 Subject: [PATCH 396/420] python311Packages.pyinsteon: 1.5.0 -> 1.5.1 https://github.com/pyinsteon/pyinsteon/releases/tag/1.5.1 --- .../python-modules/pyinsteon/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/pyinsteon/default.nix b/pkgs/development/python-modules/pyinsteon/default.nix index dbf6ab12b44e..8980da8e24bd 100644 --- a/pkgs/development/python-modules/pyinsteon/default.nix +++ b/pkgs/development/python-modules/pyinsteon/default.nix @@ -4,7 +4,6 @@ , async-generator , buildPythonPackage , fetchFromGitHub -, fetchpatch , pypubsub , pyserial , pyserial-asyncio @@ -17,7 +16,7 @@ buildPythonPackage rec { pname = "pyinsteon"; - version = "1.5.0"; + version = "1.5.1"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -26,18 +25,9 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-REm0E7+otqDypVslB5heHEaWA+q3Nh1O96gxFeCC3As="; + hash = "sha256-H2rgPA0GW6neFIHZVZxmAP50HJUPCWDZcJ90QxLGXJ8="; }; - patches = [ - # https://github.com/pyinsteon/pyinsteon/pull/361 - (fetchpatch { - name = "relax-setuptools-dependency.patch"; - url = "https://github.com/pyinsteon/pyinsteon/commit/676bc5fff11b73a4c3fd189a6ac6d3de9ca21ae0.patch"; - hash = "sha256-kTu1+IwDrcdqelyK/vfhxw8MQBis5I1jag7YTytKQhs="; - }) - ]; - nativeBuildInputs = [ setuptools wheel From 8a132db7a57cbbcc7edd791e9a19cdbe947a78ac Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 01:51:34 +0200 Subject: [PATCH 397/420] python311Packages.pysensibo: 1.0.33 -> 1.0.35 https://github.com/andrey-git/pysensibo/releases/tag/1.0.35 --- pkgs/development/python-modules/pysensibo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysensibo/default.nix b/pkgs/development/python-modules/pysensibo/default.nix index 0d79ed311625..603800f9a169 100644 --- a/pkgs/development/python-modules/pysensibo/default.nix +++ b/pkgs/development/python-modules/pysensibo/default.nix @@ -7,14 +7,14 @@ buildPythonPackage rec { pname = "pysensibo"; - version = "1.0.33"; + version = "1.0.35"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-A7IzAIV8dQVSmYTEp9yeySQ8eXnLFVkiuWFS3pe2YTA="; + hash = "sha256-E3XUQ7Ltu9zhjWVvl1LN+UUz8B2dAjLa0CZI9ca35nc="; }; propagatedBuildInputs = [ From f261c2a3eebe75bc2cfd4e14f553f1dae171abd9 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 01:52:06 +0200 Subject: [PATCH 398/420] python311Packages.python-roborock: 0.34.5 -> 0.34.6 https://github.com/humbertogontijo/python-roborock/blob/v0.34.6/CHANGELOG.md --- pkgs/development/python-modules/python-roborock/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-roborock/default.nix b/pkgs/development/python-modules/python-roborock/default.nix index f5a5eefd5c9f..7fa360703757 100644 --- a/pkgs/development/python-modules/python-roborock/default.nix +++ b/pkgs/development/python-modules/python-roborock/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "python-roborock"; - version = "0.34.5"; + version = "0.34.6"; format = "pyproject"; disabled = pythonOlder "3.10"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "humbertogontijo"; repo = "python-roborock"; rev = "refs/tags/v${version}"; - hash = "sha256-BJZ24TfdIybSzLLWn7+vRMaxnBKVZSzCNLzKFaFvhok="; + hash = "sha256-c55E5J0PKk9FG3KDIO0R3vGQjYjj8u7zXz8o9oA1Grc="; }; postPatch = '' From e465a0933ab795d79960c16ee09f55981e14f00e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 13 Sep 2023 07:40:51 +0000 Subject: [PATCH 399/420] python310Packages.screenlogicpy: 0.8.2 -> 0.9.1 --- pkgs/development/python-modules/screenlogicpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/screenlogicpy/default.nix b/pkgs/development/python-modules/screenlogicpy/default.nix index 7ed829df1679..fef2b05f9e8c 100644 --- a/pkgs/development/python-modules/screenlogicpy/default.nix +++ b/pkgs/development/python-modules/screenlogicpy/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "screenlogicpy"; - version = "0.8.2"; + version = "0.9.1"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "dieselrabbit"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-7w2cg+LfL3w2Xxf8s7lFxE/HkqZ6RBYp8LkZTOwgK+I="; + hash = "sha256-bBdOaAr9VH7UeY/UdeKS9oOevJwW2HChJiTGCNbbikM="; }; propagatedBuildInputs = [ From e891c2423fb7bb16f061331ec116b390ebeefc66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 29 Sep 2023 13:06:40 -0700 Subject: [PATCH 400/420] python310Packages.twitchapi: 3.11.0 -> 4.0.1 Changelog: https://github.com/Teekeks/pyTwitchAPI/blob/v4.0.1/docs/changelog.rst --- .../python-modules/twitchapi/default.nix | 26 ++++++++++++------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/twitchapi/default.nix b/pkgs/development/python-modules/twitchapi/default.nix index 7df76ab5dfc9..f9db5fa4ecc8 100644 --- a/pkgs/development/python-modules/twitchapi/default.nix +++ b/pkgs/development/python-modules/twitchapi/default.nix @@ -1,7 +1,9 @@ { lib , buildPythonPackage , pythonOlder -, fetchPypi +, fetchFromGitHub +, setuptools +, wheel , aiohttp , python-dateutil , typing-extensions @@ -9,18 +11,24 @@ buildPythonPackage rec { pname = "twitchapi"; - version = "3.11.0"; + version = "4.0.1"; disabled = pythonOlder "3.7"; - format = "setuptools"; + format = "pyproject"; - src = fetchPypi { - pname = "twitchAPI"; - inherit version; - hash = "sha256-TkQzF32nt89uBvC6aj/b5f2DQkOVDz7UyeUXRyVYumM="; + src = fetchFromGitHub { + owner = "Teekeks"; + repo = "pyTwitchAPI"; + rev = "refs/tags/v${version}"; + hash = "sha256-WrZb734K51NYqlcMCRr8HO8E7XByioltd4vanTN8HUg="; }; + nativeBuildInputs = [ + setuptools + wheel + ]; + propagatedBuildInputs = [ aiohttp python-dateutil @@ -35,11 +43,11 @@ buildPythonPackage rec { "twitchAPI.oauth" "twitchAPI.pubsub" "twitchAPI.twitch" - "twitchAPI.types" + "twitchAPI.type" ]; meta = with lib; { - changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/v${version}/docs/changelog.rst"; + changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/${src.rev}/docs/changelog.rst"; description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub"; homepage = "https://github.com/Teekeks/pyTwitchAPI"; license = licenses.mit; From 41cfffed1681def2732eda1aab66dd1889ec0564 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 4 Oct 2023 03:21:55 +0200 Subject: [PATCH 401/420] python311Packages.webrtc-noise-gain: 1.2.2 -> 1.2.3 https://github.com/rhasspy/webrtc-noise-gain/blob/v1.2.3/CHANGELOG.md --- pkgs/development/python-modules/webrtc-noise-gain/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/webrtc-noise-gain/default.nix b/pkgs/development/python-modules/webrtc-noise-gain/default.nix index 52b1d1fde48a..63b02a1bfd0d 100644 --- a/pkgs/development/python-modules/webrtc-noise-gain/default.nix +++ b/pkgs/development/python-modules/webrtc-noise-gain/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "webrtc-noise-gain"; - version = "1.2.2"; + version = "1.2.3"; pyproject = true; src = fetchFromGitHub { owner = "rhasspy"; repo = "webrtc-noise-gain"; rev = "v${version}"; - hash = "sha256-yHuCa2To9/9kD+tLG239I1aepuhcPUV4a4O1TQtBPlE="; + hash = "sha256-DFEtuO49zXNixLwBjQ/WOiARDhMAXVH+5hfc3eSdPIo="; }; nativeBuildInputs = [ From 81b126d8218bc655eed131a6ad5dc08a0102f3d4 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 01:59:20 +0200 Subject: [PATCH 402/420] python311Packages.zigpy-xbee: 0.18.2 -> 0.18.3 https://github.com/zigpy/zigpy-xbee/releases/tag/0.18.3 --- pkgs/development/python-modules/zigpy-xbee/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/zigpy-xbee/default.nix b/pkgs/development/python-modules/zigpy-xbee/default.nix index a94eb4e4c545..fe0eb8607582 100644 --- a/pkgs/development/python-modules/zigpy-xbee/default.nix +++ b/pkgs/development/python-modules/zigpy-xbee/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "zigpy-xbee"; - version = "0.18.2"; + version = "0.18.3"; # https://github.com/Martiusweb/asynctest/issues/152 # broken by upstream python bug with asynctest and # is used exclusively by home-assistant with python 3.8 @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "zigpy"; repo = "zigpy-xbee"; rev = "refs/tags/${version}"; - hash = "sha256-aglKQWIMh0IyrcGt+PZVtzcgs88YbtZB7Tfg7hlB+18="; + hash = "sha256-+qtbOC3rsse57kqd4RLl9EKXzru0vdgIIPSl1OQ652U="; }; buildInputs = [ @@ -36,8 +36,8 @@ buildPythonPackage rec { ]; disabledTests = [ - # https://github.com/zigpy/zigpy-xbee/issues/126 - "test_form_network" + # fixed in https://github.com/zigpy/zigpy-xbee/commit/f85233fc28ae01c08267965e99a29e43b00e1561 + "test_shutdown" ]; meta = with lib; { From 88bbc7fb16a8ce24c8386eb90b190ec3ec8775be Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 01:59:46 +0200 Subject: [PATCH 403/420] python311Packages.zwave-js-server-python: 0.51.3 -> 0.52.1 https://github.com/home-assistant-libs/zwave-js-server-python/releases/tag/0.52.1 --- .../python-modules/zwave-js-server-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zwave-js-server-python/default.nix b/pkgs/development/python-modules/zwave-js-server-python/default.nix index 754da83efc3a..105dbbbe0424 100644 --- a/pkgs/development/python-modules/zwave-js-server-python/default.nix +++ b/pkgs/development/python-modules/zwave-js-server-python/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "zwave-js-server-python"; - version = "0.51.3"; + version = "0.52.1"; format = "setuptools"; disabled = pythonOlder "3.11"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "home-assistant-libs"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-79INvk5WLuSki/kBU25hMHRxGk7FAznU89U+y3Eh+wI="; + hash = "sha256-+zGLWti99mYTyPkSxiYgE5RqVvEr2PGt8vFwesjcquo="; }; propagatedBuildInputs = [ From 3180c9c4c485c571a0d53f4a09cd8fb2bf60c9ee Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 02:06:07 +0200 Subject: [PATCH 404/420] python311Packages.pyserial-asyncio-fast: init at 0.11 Fast asyncio extension package for pyserial that implements eager writes. --- .../pyserial-asyncio-fast/default.nix | 53 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 55 insertions(+) create mode 100644 pkgs/development/python-modules/pyserial-asyncio-fast/default.nix diff --git a/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix new file mode 100644 index 000000000000..d935b2c17155 --- /dev/null +++ b/pkgs/development/python-modules/pyserial-asyncio-fast/default.nix @@ -0,0 +1,53 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub + +# build-system +, setuptools +, wheel + +# dependencies +, pyserial + +# tests +, pytestCheckHook +, pytest-asyncio +}: + +buildPythonPackage rec { + pname = "pyserial-asyncio-fast"; + version = "0.11"; + pyproject = true; + + src = fetchFromGitHub { + owner = "bdraco"; + repo = "pyserial-asyncio-fast"; + rev = version; + hash = "sha256-B1CLk7ggI7l+DaMDlnMjl2tfh+evvaf1nxzBpmqMBZk="; + }; + + nativeBuildInputs = [ + setuptools + wheel + ]; + + propagatedBuildInputs = [ + pyserial + ]; + + pythonImportsCheck = [ + "serial_asyncio_fast" + ]; + + nativeCheckInputs = [ + pytestCheckHook + pytest-asyncio + ]; + + meta = with lib; { + description = "Fast asyncio extension package for pyserial that implements eager writes"; + homepage = "https://github.com/bdraco/pyserial-asyncio-fast"; + license = licenses.bsd3; + maintainers = with maintainers; [ hexa ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a3e8bb1255b9..67ad8fc444a7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10780,6 +10780,8 @@ self: super: with self; { pyserial-asyncio = callPackage ../development/python-modules/pyserial-asyncio { }; + pyserial-asyncio-fast = callPackage ../development/python-modules/pyserial-asyncio-fast { }; + pyserial = callPackage ../development/python-modules/pyserial { }; pysftp = callPackage ../development/python-modules/pysftp { }; From eee2819fc48ea88bc77bb3530a536a19ebdab395 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 02:09:20 +0200 Subject: [PATCH 405/420] home-assistant: 2023.9.3 -> 2023.10.0 https://www.home-assistant.io/blog/2023/10/04/release-202310/ --- .../home-assistant/component-packages.nix | 230 +++++++++++++----- pkgs/servers/home-assistant/default.nix | 26 +- pkgs/servers/home-assistant/frontend.nix | 4 +- pkgs/servers/home-assistant/tests.nix | 2 + 4 files changed, 176 insertions(+), 86 deletions(-) diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix index da8c4d4c36f1..2082b9642463 100644 --- a/pkgs/servers/home-assistant/component-packages.nix +++ b/pkgs/servers/home-assistant/component-packages.nix @@ -2,7 +2,7 @@ # Do not edit! { - version = "2023.9.3"; + version = "2023.10.0"; components = { "3_day_blinds" = ps: with ps; [ ]; @@ -79,7 +79,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "airtouch4" = ps: with ps; [ @@ -200,7 +200,7 @@ aqualogic ]; "aquostv" = ps: with ps; [ - ]; # missing inputs: sharp-aquos-rc + ]; # missing inputs: sharp_aquos_rc "aranet" = ps: with ps; [ aioesphomeapi aiohttp-cors @@ -224,7 +224,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "arcam_fmj" = ps: with ps; [ @@ -251,7 +251,7 @@ hassil home-assistant-intents mutagen - webrtcvad + webrtc-noise-gain ]; "asterisk_cdr" = ps: with ps; [ asterisk-mbox @@ -395,7 +395,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "blueprint" = ps: with ps; [ @@ -439,7 +439,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "bluetooth_le_tracker" = ps: with ps; [ @@ -464,7 +464,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "bluetooth_tracker" = ps: with ps; [ @@ -540,7 +540,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "bticino" = ps: with ps; [ @@ -581,7 +581,7 @@ pychromecast pyturbojpeg sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "cert_expiry" = ps: with ps; [ @@ -620,7 +620,7 @@ home-assistant-intents mutagen pyturbojpeg - webrtcvad + webrtc-noise-gain ]; "cloudflare" = ps: with ps; [ pycfdns @@ -754,7 +754,7 @@ scapy securetar sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "delijn" = ps: with ps; [ @@ -895,7 +895,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "dovado" = ps: with ps; [ @@ -956,6 +956,8 @@ "ecobee" = ps: with ps; [ python-ecobee-api ]; + "ecoforest" = ps: with ps; [ + ]; # missing inputs: pyecoforest "econet" = ps: with ps; [ pyeconet ]; @@ -1052,6 +1054,8 @@ "enigma2" = ps: with ps; [ openwebifpy ]; + "enmax" = ps: with ps; [ + ]; "enocean" = ps: with ps; [ enocean ]; @@ -1098,7 +1102,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; # missing inputs: python-eq3bt "escea" = ps: with ps; [ @@ -1126,7 +1130,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "etherscan" = ps: with ps; [ @@ -1157,7 +1161,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "event" = ps: with ps; [ @@ -1269,7 +1273,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "fleetgo" = ps: with ps; [ @@ -1410,9 +1414,9 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf - ]; # missing inputs: gardena_bluetooth + ]; # missing inputs: gardena-bluetooth "gaviota" = ps: with ps; [ ]; "gc100" = ps: with ps; [ @@ -1563,7 +1567,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "gpsd" = ps: with ps; [ @@ -1694,6 +1698,7 @@ psutil-home-assistant pyserial pyserial-asyncio + pyserial-asyncio-fast pyudev sqlalchemy universal-silabs-flasher @@ -1713,6 +1718,7 @@ psutil-home-assistant pyserial pyserial-asyncio + pyserial-asyncio-fast pyudev sqlalchemy universal-silabs-flasher @@ -1732,6 +1738,7 @@ psutil-home-assistant pyserial pyserial-asyncio + pyserial-asyncio-fast pyudev sqlalchemy universal-silabs-flasher @@ -1751,6 +1758,7 @@ psutil-home-assistant pyserial pyserial-asyncio + pyserial-asyncio-fast pyudev sqlalchemy universal-silabs-flasher @@ -1799,7 +1807,7 @@ python-otbr-api pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "homematic" = ps: with ps; [ @@ -1889,12 +1897,37 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "icloud" = ps: with ps; [ pyicloud ]; + "idasen_desk" = ps: with ps; [ + aioesphomeapi + aiohttp-cors + aioruuvigateway + aioshelly + async-interrupt + bleak + bleak-retry-connector + bluetooth-adapters + bluetooth-auto-recovery + bluetooth-data-tools + dbus-fast + esphome-dashboard-api + fnv-hash-fast + hassil + home-assistant-intents + ifaddr + mutagen + psutil-home-assistant + pyserial + pyudev + sqlalchemy + webrtc-noise-gain + zeroconf + ]; # missing inputs: idasen-ha "idteck_prox" = ps: with ps; [ ]; # missing inputs: rfk101py "ifttt" = ps: with ps; [ @@ -1958,7 +1991,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "input_boolean" = ps: with ps; [ @@ -2098,7 +2131,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "keyboard" = ps: with ps; [ @@ -2130,7 +2163,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "kira" = ps: with ps; [ @@ -2240,7 +2273,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "led_ble" = ps: with ps; [ @@ -2266,7 +2299,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "legrand" = ps: with ps; [ @@ -2372,7 +2405,7 @@ home-assistant-intents mutagen pyturbojpeg - webrtcvad + webrtc-noise-gain ]; # missing inputs: loqedAPI "lovelace" = ps: with ps; [ ]; @@ -2435,7 +2468,8 @@ mastodon-py ]; "matrix" = ps: with ps; [ - matrix-client + matrix-nio + pillow ]; "matter" = ps: with ps; [ aiohttp-cors @@ -2453,6 +2487,31 @@ "meater" = ps: with ps; [ meater-python ]; + "medcom_ble" = ps: with ps; [ + aioesphomeapi + aiohttp-cors + aioruuvigateway + aioshelly + async-interrupt + bleak + bleak-retry-connector + bluetooth-adapters + bluetooth-auto-recovery + bluetooth-data-tools + dbus-fast + esphome-dashboard-api + fnv-hash-fast + hassil + home-assistant-intents + ifaddr + mutagen + psutil-home-assistant + pyserial + pyudev + sqlalchemy + webrtc-noise-gain + zeroconf + ]; # missing inputs: medcom-ble "media_extractor" = ps: with ps; [ aiohttp-cors yt-dlp @@ -2493,7 +2552,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; # missing inputs: melnor-bluetooth "meraki" = ps: with ps; [ @@ -2548,8 +2607,6 @@ "min_max" = ps: with ps; [ ]; "minecraft_server" = ps: with ps; [ - aiodns - getmac mcstatus ]; "minio" = ps: with ps; [ @@ -2580,7 +2637,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "mobile_app" = ps: with ps; [ @@ -2595,7 +2652,7 @@ pynacl pyturbojpeg sqlalchemy - webrtcvad + webrtc-noise-gain ]; "mochad" = ps: with ps; [ ]; # missing inputs: pymochad @@ -2647,7 +2704,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "motion_blinds" = ps: with ps; [ @@ -2712,8 +2769,7 @@ sqlalchemy ]; "myq" = ps: with ps; [ - pymyq - ]; + ]; # missing inputs: python-myq "mysensors" = ps: with ps; [ aiohttp-cors janus @@ -2771,7 +2827,7 @@ pyatmo pyturbojpeg sqlalchemy - webrtcvad + webrtc-noise-gain ]; "netdata" = ps: with ps; [ netdata @@ -3014,7 +3070,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "oru" = ps: with ps; [ @@ -3037,6 +3093,7 @@ pyroute2 pyserial pyserial-asyncio + pyserial-asyncio-fast python-otbr-api pyudev sqlalchemy @@ -3068,7 +3125,7 @@ paho-mqtt pynacl pyturbojpeg - webrtcvad + webrtc-noise-gain ]; "p1_monitor" = ps: with ps; [ p1monitor @@ -3153,7 +3210,7 @@ mutagen pyplaato pyturbojpeg - webrtcvad + webrtc-noise-gain ]; "plant" = ps: with ps; [ fnv-hash-fast @@ -3184,6 +3241,31 @@ "powerwall" = ps: with ps; [ tesla-powerwall ]; + "private_ble_device" = ps: with ps; [ + aioesphomeapi + aiohttp-cors + aioruuvigateway + aioshelly + async-interrupt + bleak + bleak-retry-connector + bluetooth-adapters + bluetooth-auto-recovery + bluetooth-data-tools + dbus-fast + esphome-dashboard-api + fnv-hash-fast + hassil + home-assistant-intents + ifaddr + mutagen + psutil-home-assistant + pyserial + pyudev + sqlalchemy + webrtc-noise-gain + zeroconf + ]; "profiler" = ps: with ps; [ guppy3 objgraph @@ -3273,7 +3355,7 @@ pyudev qingping-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "qld_bushfire" = ps: with ps; [ @@ -3308,7 +3390,7 @@ mutagen pyturbojpeg rachiopy - webrtcvad + webrtc-noise-gain ]; "radarr" = ps: with ps; [ aiopyarr @@ -3357,7 +3439,7 @@ pyudev rapt-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "raspberry_pi" = ps: with ps; [ @@ -3481,7 +3563,6 @@ ]; "ruckus_unleashed" = ps: with ps; [ aioruckus - xmltodict ]; "russound_rio" = ps: with ps; [ ]; # missing inputs: russound-rio @@ -3525,7 +3606,7 @@ pyudev ruuvitag-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "rympro" = ps: with ps; [ @@ -3546,7 +3627,7 @@ psutil-home-assistant pyturbojpeg sqlalchemy - webrtcvad + webrtc-noise-gain ]; "saj" = ps: with ps; [ pysaj @@ -3636,7 +3717,7 @@ pyudev sensirion-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "sensor" = ps: with ps; [ @@ -3669,7 +3750,7 @@ pyudev sensorpro-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "sensorpush" = ps: with ps; [ @@ -3695,7 +3776,7 @@ pyudev sensorpush-ble sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "sentry" = ps: with ps; [ @@ -3833,7 +3914,7 @@ pysmartapp pysmartthings pyturbojpeg - webrtcvad + webrtc-noise-gain ]; "smarttub" = ps: with ps; [ python-smarttub @@ -3880,7 +3961,7 @@ pysnooz pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; "solaredge" = ps: with ps; [ @@ -4071,9 +4152,11 @@ pyswitchbot pyudev sqlalchemy - webrtcvad + webrtc-noise-gain zeroconf ]; + "switchbot_cloud" = ps: with ps; [ + ]; # missing inputs: switchbot-api "switcher_kis" = ps: with ps; [ aioswitcher ]; @@ -4202,7 +4285,7 @@ pyudev sqlalchemy thermobeacon-ble - webrtcvad + webrtc-noise-gain zeroconf ]; "thermoplus" = ps: with ps; [ @@ -4230,7 +4313,7 @@ pyudev sqlalchemy thermopro-ble - webrtcvad + webrtc-noise-gain zeroconf ]; "thermoworks_smoke" = ps: with ps; [ @@ -4290,7 +4373,7 @@ pyudev sqlalchemy tilt-ble - webrtcvad + webrtc-noise-gain zeroconf ]; "time" = ps: with ps; [ @@ -4323,7 +4406,7 @@ mutagen pyturbojpeg toonapi - webrtcvad + webrtc-noise-gain ]; "torque" = ps: with ps; [ aiohttp-cors @@ -4410,6 +4493,10 @@ ttls ]; "twitch" = ps: with ps; [ + aiohttp-cors + fnv-hash-fast + psutil-home-assistant + sqlalchemy twitchapi ]; "twitter" = ps: with ps; [ @@ -4427,6 +4514,8 @@ "ukraine_alarm" = ps: with ps; [ uasiren ]; + "ultraloq" = ps: with ps; [ + ]; "unifi" = ps: with ps; [ aiounifi ]; @@ -4557,7 +4646,7 @@ hassil home-assistant-intents mutagen - webrtcvad + webrtc-noise-gain ]; # missing inputs: voip-utils "volkszaehler" = ps: with ps; [ volkszaehler @@ -4602,6 +4691,11 @@ ]; "weather" = ps: with ps; [ ]; + "weatherflow" = ps: with ps; [ + pyweatherflowudp + ]; + "weatherkit" = ps: with ps; [ + ]; # missing inputs: apple_weatherkit "webhook" = ps: with ps; [ aiohttp-cors ]; @@ -4636,8 +4730,14 @@ "withings" = ps: with ps; [ aiohttp-cors fnv-hash-fast + hass-nabucasa + hassil + home-assistant-intents + mutagen psutil-home-assistant + pyturbojpeg sqlalchemy + webrtc-noise-gain withings-api ]; "wiz" = ps: with ps; [ @@ -4710,7 +4810,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain xiaomi-ble zeroconf ]; @@ -4754,7 +4854,7 @@ pyserial pyudev sqlalchemy - webrtcvad + webrtc-noise-gain yalexs-ble zeroconf ]; @@ -4844,6 +4944,7 @@ psutil-home-assistant pyserial pyserial-asyncio + pyserial-asyncio-fast pyudev sqlalchemy universal-silabs-flasher @@ -4894,6 +4995,7 @@ "adguard" "advantage_air" "aemet" + "aftership" "agent_dvr" "air_quality" "airly" @@ -5071,6 +5173,7 @@ "filter" "fireservicerota" "firmata" + "fitbit" "fivem" "fjaraskupan" "flic" @@ -5168,6 +5271,7 @@ "humidifier" "hunterdouglas_powerview" "hvv_departures" + "hydrawise" "hyperion" "ialarm" "iaqualink" @@ -5252,10 +5356,12 @@ "mailgun" "manual" "manual_mqtt" + "matrix" "matter" "maxcube" "mazda" "meater" + "media_extractor" "media_player" "media_source" "melcloud" @@ -5292,7 +5398,6 @@ "mullvad" "mutesync" "my" - "myq" "mysensors" "mystrom" "mythicbeastsdns" @@ -5372,6 +5477,7 @@ "point" "poolsense" "powerwall" + "private_ble_device" "profiler" "prometheus" "prosegur" @@ -5603,10 +5709,12 @@ "wake_on_lan" "wake_word" "wallbox" + "waqi" "water_heater" "watttime" "waze_travel_time" "weather" + "weatherflow" "webhook" "webostv" "websocket_api" diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index 3d7ea12691b1..eb5367cda93d 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -134,16 +134,6 @@ let }; }); - plexapi = super.plexapi.overridePythonAttrs (oldAttrs: rec { - version = "4.13.2"; - src = fetchFromGitHub { - owner = "pkkid"; - repo = "python-plexapi"; - rev = "refs/tags/${version}"; - hash = "sha256-5YwINPgQ4efZBvu5McsLYicW/7keKSi011lthJUR9zw="; - }; - }); - # Pinned due to API changes in 0.1.0 poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec { version = "0.0.8"; @@ -282,16 +272,6 @@ let }; }); - zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec { - version = "0.98.0"; - src = fetchFromGitHub { - owner = "python-zeroconf"; - repo = "python-zeroconf"; - rev = "refs/tags/${version}"; - hash = "sha256-oajSXGQTsJsajRAnS/MkkbSyxTeVvdjvw1eiJaPzZMY="; - }; - }); - # internal python packages only consumed by home-assistant itself home-assistant-frontend = self.callPackage ./frontend.nix { }; home-assistant-intents = self.callPackage ./intents.nix { }; @@ -316,7 +296,7 @@ let extraBuildInputs = extraPackages python.pkgs; # Don't forget to run parse-requirements.py after updating - hassVersion = "2023.9.3"; + hassVersion = "2023.10.0"; in python.pkgs.buildPythonApplication rec { pname = "homeassistant"; @@ -332,7 +312,7 @@ in python.pkgs.buildPythonApplication rec { # Primary source is the pypi sdist, because it contains translations src = fetchPypi { inherit pname version; - hash = "sha256-tcIGYJ+r2+0jnf3xUxnFdwnLiOK9P0Y6sw0Mpd/YIT0="; + hash = "sha256-UmgIQJRQRDMzjUO9lJVpKsIvrFHBzoXc5Kig69ZHttU="; }; # Secondary source is git for tests @@ -340,7 +320,7 @@ in python.pkgs.buildPythonApplication rec { owner = "home-assistant"; repo = "core"; rev = "refs/tags/${version}"; - hash = "sha256-zAUMevj2xvRkhZg4wuHDz0+X//cEU/D/HmokmX9oeCU="; + hash = "sha256-M8TuH9oF4+6PuHDCHiGWxSnrQcOw/OsJVSfX/8XfyIM="; }; nativeBuildInputs = with python.pkgs; [ diff --git a/pkgs/servers/home-assistant/frontend.nix b/pkgs/servers/home-assistant/frontend.nix index 118f179a9c53..39f41f6fca6b 100644 --- a/pkgs/servers/home-assistant/frontend.nix +++ b/pkgs/servers/home-assistant/frontend.nix @@ -4,7 +4,7 @@ buildPythonPackage rec { # the frontend version corresponding to a specific home-assistant version can be found here # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json pname = "home-assistant-frontend"; - version = "20230911.0"; + version = "20231002.0"; format = "wheel"; src = fetchPypi { @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "home_assistant_frontend"; dist = "py3"; python = "py3"; - hash = "sha256-AcMZYjSbsBrfC0Oh5P+eruNILWdVmk46+p+8xLpqfuo="; + hash = "sha256-19HFMuR7INHM805HwWyWS2qWXPOYuFjnpf0UP93tObg="; }; # there is nothing to strip in this package diff --git a/pkgs/servers/home-assistant/tests.nix b/pkgs/servers/home-assistant/tests.nix index f2c904467852..e4561cdcc3ed 100644 --- a/pkgs/servers/home-assistant/tests.nix +++ b/pkgs/servers/home-assistant/tests.nix @@ -5,6 +5,7 @@ let # some components' tests have additional dependencies extraCheckInputs = with home-assistant.python.pkgs; { + airzone_cloud = [ aioairzone ]; alexa = [ av ]; bluetooth = [ pyswitchbot ]; bthome = [ xiaomi-ble ]; @@ -19,6 +20,7 @@ let homeassistant_sky_connect = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp zwave-js-server-python ]; homeassistant_yellow = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ]; lovelace = [ pychromecast ]; + matrix = [ pydantic ]; mopeka = [ pyswitchbot ]; nest = [ av ]; onboarding = [ pymetno radios rpi-bad-power ]; From 9a206059108ebdb6d79dabf9efc873013cc9ea7a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 02:10:06 +0200 Subject: [PATCH 406/420] nixos/home-assistant: update bluetooth integrations --- nixos/modules/services/home-automation/home-assistant.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/home-automation/home-assistant.nix b/nixos/modules/services/home-automation/home-assistant.nix index 0b8b1d719418..7dc08d4356aa 100644 --- a/nixos/modules/services/home-automation/home-assistant.nix +++ b/nixos/modules/services/home-automation/home-assistant.nix @@ -457,10 +457,12 @@ in { "inkbird" "keymitt_ble" "led_ble" + "medcom_ble" "melnor" "moat" "mopeka" "oralb" + "private_ble_device" "qingping" "rapt_ble" "ruuvi_gateway" From 306ce8c5e20d1fd1b2e3ecaa35acf4a233d0b71e Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Fri, 15 Sep 2023 14:07:13 +0200 Subject: [PATCH 407/420] python3Packages.syrupy: 4.2.1 -> 4.5.0 (cherry picked from commit f4e97eb05c88371c3f5a4bed64c1b1fa1675244c) --- pkgs/development/python-modules/syrupy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/syrupy/default.nix b/pkgs/development/python-modules/syrupy/default.nix index cd9d2addc604..8759f3562596 100644 --- a/pkgs/development/python-modules/syrupy/default.nix +++ b/pkgs/development/python-modules/syrupy/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "syrupy"; - version = "4.2.1"; + version = "4.5.0"; format = "pyproject"; disabled = lib.versionOlder python.version "3.8.1"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "tophat"; repo = "syrupy"; rev = "refs/tags/v${version}"; - hash = "sha256-MXUuLw4+J/9JtXY1DYwBjj2sgAbO2cXQi1HnVRx3BhM="; + hash = "sha256-HRCURqnFzo1l+PjX1LtXTSVZGA36OaRgmy4xKizeuOg="; }; nativeBuildInputs = [ From 6ef3db48a8e2b40f2dcf95a50b1e3ca46168b404 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 04:04:56 +0200 Subject: [PATCH 408/420] python311Packages.homeassistant-stubs: 2023.9.3 -> 2023.10.0 https://github.com/KapJI/homeassistant-stubs/releases/tag/2023.10.0 --- pkgs/servers/home-assistant/stubs.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/stubs.nix b/pkgs/servers/home-assistant/stubs.nix index af923462a0a6..2ede793de96f 100644 --- a/pkgs/servers/home-assistant/stubs.nix +++ b/pkgs/servers/home-assistant/stubs.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "homeassistant-stubs"; - version = "2023.9.3"; + version = "2023.10.0"; format = "pyproject"; disabled = python.version != home-assistant.python.version; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "KapJI"; repo = "homeassistant-stubs"; rev = "refs/tags/${version}"; - hash = "sha256-dZOpfSfq47sGJJB6CvcBDlSLBG8EVAX8RMuNzbP7bTs="; + hash = "sha256-/RVv2gfODAiG5mPteeHOleqkQwmamCfliCGrf1eSIr4="; }; nativeBuildInputs = [ From f92134d363dfd5f11bd017ca106779bf59aa7866 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 5 Oct 2023 05:24:25 +0200 Subject: [PATCH 409/420] python311Packages.pyenphase: disable tests failing with syrupy 4.5.0 --- pkgs/development/python-modules/pyenphase/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/pyenphase/default.nix b/pkgs/development/python-modules/pyenphase/default.nix index ca106a91fac4..716846949ade 100644 --- a/pkgs/development/python-modules/pyenphase/default.nix +++ b/pkgs/development/python-modules/pyenphase/default.nix @@ -56,6 +56,11 @@ buildPythonPackage rec { syrupy ]; + disabledTests = [ + # https://github.com/pyenphase/pyenphase/issues/97 + "test_with_7_x_firmware" + ]; + pythonImportsCheck = [ "pyenphase" ]; From 2b2b74526a8fb26f35887103907e74bf33163e2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Thu, 5 Oct 2023 06:27:42 +0200 Subject: [PATCH 410/420] fzf: add meta.mainProgram MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- pkgs/tools/misc/fzf/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix index 9aad1529d162..0116ee41104e 100644 --- a/pkgs/tools/misc/fzf/default.nix +++ b/pkgs/tools/misc/fzf/default.nix @@ -101,5 +101,6 @@ buildGoModule rec { maintainers = with maintainers; [ Br1ght0ne ma27 zowoq ]; platforms = platforms.unix; changelog = "https://github.com/junegunn/fzf/blob/${version}/CHANGELOG.md"; + mainProgram = "fzf"; }; } From 8b1de6a0057bcde0670d2a0e1f5dde3df1ae8628 Mon Sep 17 00:00:00 2001 From: Steven Kou Date: Thu, 5 Oct 2023 01:30:54 -0400 Subject: [PATCH 411/420] jetbrains.gateway: remove maintainer --- pkgs/applications/editors/jetbrains/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index 07372413b73c..a278a05fe33b 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -124,7 +124,7 @@ let server with your local machine, downloads necessary components on the backend, and opens your project in JetBrains Client. ''; - maintainers = with maintainers; [ kouyk ]; + maintainers = with maintainers; [ ]; }; }); From 3e32871bf04132be9ffb0281b9a0be5849339218 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:54:20 +0200 Subject: [PATCH 412/420] ncview: refactor --- pkgs/tools/X11/ncview/default.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/X11/ncview/default.nix b/pkgs/tools/X11/ncview/default.nix index 2b2aac5f66b0..e06962f2a67d 100644 --- a/pkgs/tools/X11/ncview/default.nix +++ b/pkgs/tools/X11/ncview/default.nix @@ -8,18 +8,21 @@ , xorg }: -let +stdenv.mkDerivation (finalAttrs: { pname = "ncview"; version = "2.1.8"; -in stdenv.mkDerivation { - name = "${pname}-${version}"; - src = fetchurl { - url = "ftp://cirrus.ucsd.edu/pub/ncview/ncview-2.1.8.tar.gz"; - sha256 = "1gliziyxil2fcz85hj6z0jq33avrxdcjs74d500lhxwvgd8drfp8"; + url = "ftp://cirrus.ucsd.edu/pub/ncview/ncview-${finalAttrs.version}.tar.gz"; + hash = "sha256-6LrcUHubd0gBKI0cLVnreasxsATfSFjQZ07Q2H38kb4="; }; + strictDeps = true; + + nativeBuildInputs = [ + netcdf + ]; + buildInputs = [ expat libpng @@ -34,8 +37,10 @@ in stdenv.mkDerivation { meta = with lib; { description = "Visual browser for netCDF format files"; - homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html"; - license = licenses.gpl3; + homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html"; + license = licenses.gpl3Plus; + mainProgram = "ncview"; maintainers = with maintainers; [ jmettes ]; + platforms = platforms.all; }; -} +}) From 60607a829db7ab026480c411f0f87c30edb82eb6 Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Wed, 4 Oct 2023 16:54:44 +0200 Subject: [PATCH 413/420] ncview: 2.1.8 -> 2.1.9 --- pkgs/tools/X11/ncview/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/X11/ncview/default.nix b/pkgs/tools/X11/ncview/default.nix index e06962f2a67d..fcfb6661f310 100644 --- a/pkgs/tools/X11/ncview/default.nix +++ b/pkgs/tools/X11/ncview/default.nix @@ -10,11 +10,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "ncview"; - version = "2.1.8"; + version = "2.1.9"; src = fetchurl { - url = "ftp://cirrus.ucsd.edu/pub/ncview/ncview-${finalAttrs.version}.tar.gz"; - hash = "sha256-6LrcUHubd0gBKI0cLVnreasxsATfSFjQZ07Q2H38kb4="; + url = "https://cirrus.ucsd.edu/~pierce/ncview/ncview-${finalAttrs.version}.tar.gz"; + hash = "sha256-4jF6wJSvYvCtz2hCHXBlgglDaq40RkCVnsiXWmRYka8="; }; strictDeps = true; From e128a66c71159ca9cf4f29f7cd2f85c3b112eab5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 5 Oct 2023 08:51:16 +0200 Subject: [PATCH 414/420] checkov: 2.5.3 -> 2.5.4 Diff: https://github.com/bridgecrewio/checkov/compare/refs/tags/2.5.3...2.5.4 Changelog: https://github.com/bridgecrewio/checkov/releases/tag/2.5.4 --- pkgs/development/tools/analysis/checkov/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkov/default.nix b/pkgs/development/tools/analysis/checkov/default.nix index 302acfb7e0f5..e4ef7b483497 100644 --- a/pkgs/development/tools/analysis/checkov/default.nix +++ b/pkgs/development/tools/analysis/checkov/default.nix @@ -22,14 +22,14 @@ with py.pkgs; buildPythonApplication rec { pname = "checkov"; - version = "2.5.3"; + version = "2.5.4"; format = "setuptools"; src = fetchFromGitHub { owner = "bridgecrewio"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-QSxeVu1nGK9j8hQqcUZ2RhjPmCHjbTuG/1hvMjUhrOo="; + hash = "sha256-Rp1Q486vbgZmWcxQNy1esRYl0HRWQonicNP0bYdqPtc="; }; patches = [ From 462a00c426d09015d716292110c3ff4c9f2f9982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Thu, 5 Oct 2023 09:12:35 +0200 Subject: [PATCH 415/420] furnace: 0.6pre18 -> 0.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- pkgs/applications/audio/furnace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/furnace/default.nix b/pkgs/applications/audio/furnace/default.nix index 6b208d423f00..71cc796a621d 100644 --- a/pkgs/applications/audio/furnace/default.nix +++ b/pkgs/applications/audio/furnace/default.nix @@ -28,14 +28,14 @@ stdenv.mkDerivation rec { pname = "furnace"; - version = "0.6pre18"; + version = "0.6"; src = fetchFromGitHub { owner = "tildearrow"; repo = "furnace"; rev = "v${version}"; fetchSubmodules = true; - hash = "sha256-RLmXP/F3WnADx/NUPAJZpGSQZ7CGm1bG4UJYAcIeHME="; + hash = "sha256-8we7vKyGWjM9Rx0MJjSKLJcKBHiHt5vjuy17HHx/pP8="; }; postPatch = lib.optionalString stdenv.hostPlatform.isLinux '' From 652142d7e019270171751b02229fcc82f48edeca Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 5 Oct 2023 09:21:08 +0200 Subject: [PATCH 416/420] python311Packages.gpiozero: update disabled --- pkgs/development/python-modules/gpiozero/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/gpiozero/default.nix b/pkgs/development/python-modules/gpiozero/default.nix index 2d5873aa24e1..929ce0e24f5b 100644 --- a/pkgs/development/python-modules/gpiozero/default.nix +++ b/pkgs/development/python-modules/gpiozero/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { version = "2.0"; format = "setuptools"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "gpiozero"; From 47ed687e6e2e71fda9eadfbd912d85791738191f Mon Sep 17 00:00:00 2001 From: Jonathan Davies Date: Thu, 5 Oct 2023 00:17:44 +0100 Subject: [PATCH 417/420] quickwit: 0.6.3 -> 0.6.4 --- pkgs/servers/search/quickwit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/search/quickwit/default.nix b/pkgs/servers/search/quickwit/default.nix index e16a22f9cc64..9fdcbef3e712 100644 --- a/pkgs/servers/search/quickwit/default.nix +++ b/pkgs/servers/search/quickwit/default.nix @@ -9,7 +9,7 @@ let pname = "quickwit"; - version = "0.6.3"; + version = "0.6.4"; in rustPlatform.buildRustPackage rec { inherit pname version; @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { owner = "quickwit-oss"; repo = pname; rev = "v${version}"; - hash = "sha256-u8t6QIoislQUQO/xMKfNx/vVTgeEoh8ZIhJ+RvD3YCw="; + hash = "sha256-stlm3oDMQVoMza3s4JApynXbzhrarfXw3uAxGMZQJqs="; }; postPatch = '' From a61a2f7b7dd78f1c78cc12baa6f27f88b3bf7ce1 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 4 Oct 2023 22:02:04 -0400 Subject: [PATCH 418/420] python310Packages.pytensor: fix src hash --- pkgs/development/python-modules/pytensor/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytensor/default.nix b/pkgs/development/python-modules/pytensor/default.nix index ad48c11a5def..b3472f306ebb 100644 --- a/pkgs/development/python-modules/pytensor/default.nix +++ b/pkgs/development/python-modules/pytensor/default.nix @@ -35,7 +35,7 @@ buildPythonPackage rec { owner = "pymc-devs"; repo = "pytensor"; rev = "refs/tags/rel-${version}"; - hash = "sha256-OG7ZvXJOTQzSpMoj94K9JwG6ZQRQSSp+k2slkK6BJ9I="; + hash = "sha256-xXS0uNR5rlmUjt9/TW/X/pQc5MS/MwHSQGCp7BkAVYg="; }; postPatch = '' From 275432f57622307e7d829f82fee58a71d45129ca Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 29 Sep 2023 00:17:04 -0300 Subject: [PATCH 419/420] kitty-themes: unstable-2023-06-01 -> unstable-2023-09-15 --- pkgs/applications/terminal-emulators/kitty/themes.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/terminal-emulators/kitty/themes.nix b/pkgs/applications/terminal-emulators/kitty/themes.nix index 07563345bd1a..6ca522e4090f 100644 --- a/pkgs/applications/terminal-emulators/kitty/themes.nix +++ b/pkgs/applications/terminal-emulators/kitty/themes.nix @@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation rec { pname = "kitty-themes"; - version = "unstable-2023-06-01"; + version = "unstable-2023-09-15"; src = fetchFromGitHub { owner = "kovidgoyal"; repo = "kitty-themes"; - rev = "f765eb1715d79c6cb3ad3d571342d612f21b810e"; - hash = "sha256-Y3N8cyqEsY/kB2xMIlPYnbuYUs8grzepPx/11maG4bo="; + rev = "c9c12d20f83b9536febb21e4b53e176c0ccccb51"; + hash = "sha256-dhzYTHaaTrbE5k+xEC01Y9jGb+ZmEyvWMb4a2WWKGCw="; }; dontConfigure = true; @@ -30,7 +30,7 @@ stdenvNoCC.mkDerivation rec { homepage = "https://github.com/kovidgoyal/kitty-themes"; description = "Themes for the kitty terminal emulator"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ AndersonTorres nelsonjeppesen ]; + maintainers = with lib.maintainers; [ ]; platforms = lib.platforms.all; }; } From c3a6a37ed2688c8e1c355ec9ce0dc4054b9b5c1d Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Thu, 5 Oct 2023 00:21:58 +0200 Subject: [PATCH 420/420] nimPackages.atlas: fix building against nim2 --- pkgs/development/nim-packages/atlas/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/nim-packages/atlas/default.nix b/pkgs/development/nim-packages/atlas/default.nix index aae8d6a16244..b1c22e776ab5 100644 --- a/pkgs/development/nim-packages/atlas/default.nix +++ b/pkgs/development/nim-packages/atlas/default.nix @@ -1,4 +1,4 @@ -{ lib, buildNimPackage, fetchFromGitHub }: +{ lib, buildNimPackage, fetchFromGitHub, openssl }: buildNimPackage (final: prev: { pname = "atlas"; @@ -10,6 +10,7 @@ buildNimPackage (final: prev: { rev = "ab22f997c22a644924c1a9b920f8ce207da9b77f"; hash = "sha256-TsZ8TriVuKEY9/mV6KR89eFOgYrgTqXmyv/vKu362GU="; }; + buildInputs = [ openssl ]; prePatch = '' rm config.nims ''; # never trust a .nims file