Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 7017e013 81f6dc08

+3922 -386
-12
maintainers/maintainer-list.nix
··· 3683 3683 githubId = 398996; 3684 3684 name = "Christopher Singley"; 3685 3685 }; 3686 - cstrahan = { 3687 - email = "charles@cstrahan.com"; 3688 - github = "cstrahan"; 3689 - githubId = 143982; 3690 - name = "Charles Strahan"; 3691 - }; 3692 3686 cswank = { 3693 3687 email = "craigswank@gmail.com"; 3694 3688 github = "cswank"; ··· 10349 10343 github = "lukaswrz"; 10350 10344 githubId = 84395723; 10351 10345 name = "Lukas Wurzinger"; 10352 - }; 10353 - lukeadams = { 10354 - email = "luke.adams@belljar.io"; 10355 - github = "lukeadams"; 10356 - githubId = 3508077; 10357 - name = "Luke Adams"; 10358 10346 }; 10359 10347 lukebfox = { 10360 10348 email = "lbentley-fox1@sheffield.ac.uk";
+2
nixos/modules/services/home-automation/home-assistant.nix
··· 457 457 "inkbird" 458 458 "keymitt_ble" 459 459 "led_ble" 460 + "medcom_ble" 460 461 "melnor" 461 462 "moat" 462 463 "mopeka" 463 464 "oralb" 465 + "private_ble_device" 464 466 "qingping" 465 467 "rapt_ble" 466 468 "ruuvi_gateway"
+2 -2
pkgs/applications/audio/furnace/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "furnace"; 31 - version = "0.6pre18"; 31 + version = "0.6"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "tildearrow"; 35 35 repo = "furnace"; 36 36 rev = "v${version}"; 37 37 fetchSubmodules = true; 38 - hash = "sha256-RLmXP/F3WnADx/NUPAJZpGSQZ7CGm1bG4UJYAcIeHME="; 38 + hash = "sha256-8we7vKyGWjM9Rx0MJjSKLJcKBHiHt5vjuy17HHx/pP8="; 39 39 }; 40 40 41 41 postPatch = lib.optionalString stdenv.hostPlatform.isLinux ''
+5 -3
pkgs/applications/backup/ludusavi/default.nix
··· 12 12 , libXcursor 13 13 , libXrandr 14 14 , libXi 15 + , vulkan-loader 15 16 , gnome 16 17 , libsForQt5 17 18 }: 18 19 19 20 rustPlatform.buildRustPackage rec { 20 21 pname = "ludusavi"; 21 - version = "0.20.0"; 22 + version = "0.21.0"; 22 23 23 24 src = fetchFromGitHub { 24 25 owner = "mtkennerly"; 25 26 repo = pname; 26 27 rev = "v${version}"; 27 - hash = "sha256-6wwBXgR0jutkM3L7Ihi4qryuOeBRItQTyKn2lNcvfdQ="; 28 + hash = "sha256-eEuaDMfFxWcNM9+5TvZZXLgbDuGbyIAIuzEMVWbvYbg="; 28 29 }; 29 30 30 - cargoSha256 = "sha256-9ksstWNqc2Rq5fdb4/LLHGMUXQgri9BAo2LlkFl3Irg="; 31 + cargoSha256 = "sha256-ENo562Y6K238NNEtgYoPw6EXjbcuxPuXiftIp/bGYYU="; 31 32 32 33 nativeBuildInputs = [ 33 34 cmake ··· 67 68 libXcursor 68 69 libXrandr 69 70 libXi 71 + vulkan-loader 70 72 ]; 71 73 in 72 74 ''
+8 -3
pkgs/applications/blockchains/framesh/default.nix
··· 1 - { lib, fetchurl, appimageTools }: 1 + { lib, fetchurl, appimageTools, makeWrapper }: 2 2 3 3 let 4 4 pname = "framesh"; 5 - version = "0.6.7"; 5 + version = "0.6.8"; 6 6 src = fetchurl { 7 7 url = "https://github.com/floating/frame/releases/download/v${version}/Frame-${version}.AppImage"; 8 - sha256 = "sha256-yPNgrC9ZQcl1gCStMXMbZvk15jZylM2NgKM9H3XcJVQ="; 8 + hash = "sha256-qTbT1g+9hypBUxRMZ/Eat5OGb1y6yJlxQ6iJzfQH8G4="; 9 9 }; 10 10 11 11 appimageContents = appimageTools.extractType2 { ··· 20 20 install -m 444 -D ${appimageContents}/frame.desktop $out/share/applications/frame.desktop 21 21 install -m 444 -D ${appimageContents}/frame.png \ 22 22 $out/share/icons/hicolor/512x512/apps/frame.png 23 + 24 + source "${makeWrapper}/nix-support/setup-hook" 25 + wrapProgram "$out/bin/${pname}" \ 26 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform=wayland --enable-features=WaylandWindowDecorations}}" 27 + 23 28 substituteInPlace $out/share/applications/frame.desktop \ 24 29 --replace 'Exec=AppRun' 'Exec=${pname}' 25 30 '';
+1 -1
pkgs/applications/editors/bviplus/default.nix
··· 34 34 homepage = "https://bviplus.sourceforge.net"; 35 35 license = licenses.gpl3; 36 36 platforms = platforms.linux; 37 - maintainers = with maintainers; [ cstrahan ]; 37 + maintainers = with maintainers; [ ]; 38 38 }; 39 39 }
+1 -1
pkgs/applications/editors/hexcurse/default.nix
··· 46 46 homepage = "https://github.com/LonnyGomes/hexcurse"; 47 47 license = licenses.gpl2; 48 48 platforms = platforms.linux; 49 - maintainers = with maintainers; [ cstrahan ]; 49 + maintainers = with maintainers; [ ]; 50 50 }; 51 51 }
+1 -1
pkgs/applications/editors/ht/default.nix
··· 24 24 homepage = "https://hte.sourceforge.net"; 25 25 license = licenses.gpl2; 26 26 platforms = platforms.linux; 27 - maintainers = with maintainers; [ cstrahan ]; 27 + maintainers = with maintainers; [ ]; 28 28 }; 29 29 }
+1 -1
pkgs/applications/editors/jetbrains/default.nix
··· 124 124 server with your local machine, downloads necessary components on the 125 125 backend, and opens your project in JetBrains Client. 126 126 ''; 127 - maintainers = with maintainers; [ kouyk ]; 127 + maintainers = with maintainers; [ ]; 128 128 }; 129 129 }); 130 130
+1 -1
pkgs/applications/editors/vim/macvim.nix
··· 180 180 description = "Vim - the text editor - for macOS"; 181 181 homepage = "https://github.com/macvim-dev/macvim"; 182 182 license = licenses.vim; 183 - maintainers = with maintainers; [ cstrahan lilyball ]; 183 + maintainers = with maintainers; [ lilyball ]; 184 184 platforms = platforms.darwin; 185 185 hydraPlatforms = []; # hydra can't build this as long as we rely on Xcode and sandboxProfile 186 186 };
+1 -1
pkgs/applications/misc/perkeep/default.nix
··· 55 55 description = "A way of storing, syncing, sharing, modelling and backing up content (née Camlistore)"; 56 56 homepage = "https://perkeep.org"; 57 57 license = licenses.asl20; 58 - maintainers = with maintainers; [ cstrahan danderson kalbasit ]; 58 + maintainers = with maintainers; [ danderson kalbasit ]; 59 59 }; 60 60 }
+1 -1
pkgs/applications/misc/rescuetime/default.nix
··· 52 52 meta = with lib; { 53 53 description = "Helps you understand your daily habits so you can focus and be more productive"; 54 54 homepage = "https://www.rescuetime.com"; 55 - maintainers = with maintainers; [ cstrahan ]; 55 + maintainers = with maintainers; [ ]; 56 56 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 57 57 license = licenses.unfree; 58 58 platforms = [ "i686-linux" "x86_64-linux" ];
+1 -1
pkgs/applications/misc/resp-app/default.nix
··· 98 98 homepage = "https://resp.app/"; 99 99 license = licenses.gpl3Only; 100 100 platforms = platforms.linux; 101 - maintainers = with maintainers; [ cstrahan ]; 101 + maintainers = with maintainers; [ ]; 102 102 }; 103 103 }
+1 -1
pkgs/applications/misc/terminal-notifier/default.nix
··· 26 26 ''; 27 27 28 28 meta = with lib; { 29 - maintainers = with maintainers; [ cstrahan ]; 29 + maintainers = with maintainers; [ ]; 30 30 homepage = "https://github.com/julienXX/terminal-notifier"; 31 31 license = licenses.mit; 32 32 platforms = platforms.darwin;
+1 -1
pkgs/applications/misc/zathura/pdf-mupdf/default.nix
··· 49 49 ''; 50 50 license = licenses.zlib; 51 51 platforms = platforms.unix; 52 - maintainers = with maintainers; [ cstrahan ]; 52 + maintainers = with maintainers; [ ]; 53 53 }; 54 54 }
+1 -1
pkgs/applications/misc/zathura/pdf-poppler/default.nix
··· 23 23 ''; 24 24 license = licenses.zlib; 25 25 platforms = platforms.unix; 26 - maintainers = with maintainers; [ cstrahan ]; 26 + maintainers = with maintainers; [ ]; 27 27 }; 28 28 }
+1 -1
pkgs/applications/misc/zathura/ps/default.nix
··· 23 23 ''; 24 24 license = licenses.zlib; 25 25 platforms = platforms.unix; 26 - maintainers = with maintainers; [ cstrahan ]; 26 + maintainers = with maintainers; [ ]; 27 27 }; 28 28 } 29 29
+1 -1
pkgs/applications/networking/browsers/w3m/default.nix
··· 95 95 homepage = "https://w3m.sourceforge.net/"; 96 96 changelog = "https://github.com/tats/w3m/blob/v${version}/ChangeLog"; 97 97 description = "A text-mode web browser"; 98 - maintainers = with maintainers; [ cstrahan anthonyroussel ]; 98 + maintainers = with maintainers; [ anthonyroussel ]; 99 99 platforms = platforms.unix; 100 100 license = licenses.mit; 101 101 mainProgram = "w3m";
+1 -1
pkgs/applications/networking/cluster/cni/plugins.nix
··· 48 48 homepage = "https://www.cni.dev/plugins/"; 49 49 license = licenses.asl20; 50 50 platforms = platforms.linux; 51 - maintainers = with maintainers; [ cstrahan ] ++ teams.podman.members; 51 + maintainers = with maintainers; [ ] ++ teams.podman.members; 52 52 }; 53 53 }
+3 -3
pkgs/applications/networking/instant-messengers/teams-for-linux/default.nix
··· 19 19 20 20 stdenv.mkDerivation (finalAttrs: { 21 21 pname = "teams-for-linux"; 22 - version = "1.3.11"; 22 + version = "1.3.13"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "IsmaelMartinez"; 26 26 repo = "teams-for-linux"; 27 27 rev = "v${finalAttrs.version}"; 28 - hash = "sha256-xSNjAao8pv3jGRK68bkwGy0vo3nm8KRZjTtCEge4kHs="; 28 + hash = "sha256-WF2jWP6utopAMZPP/ZWOhqVGZJmACwHyLLE+HQaHJjg="; 29 29 }; 30 30 31 31 offlineCache = fetchYarnDeps { 32 32 yarnLock = "${finalAttrs.src}/yarn.lock"; 33 - hash = "sha256-j5N6d270myUylDVDFQTScbsGp1wlpt5sISDJBRCV/GU="; 33 + hash = "sha256-vgjPGO5qa4IYfW1svClJ+wP/KtIFFd3P02T2sht69C8="; 34 34 }; 35 35 36 36 nativeBuildInputs = [ yarn fixup_yarn_lock nodejs copyDesktopItems makeWrapper ];
+3 -3
pkgs/applications/networking/mailreaders/meli/default.nix
··· 22 22 23 23 rustPlatform.buildRustPackage rec { 24 24 pname = "meli"; 25 - version = "0.8.1"; 25 + version = "0.8.2"; 26 26 27 27 src = fetchgit { 28 28 url = "https://git.meli.delivery/meli/meli.git"; 29 29 rev = "v${version}"; 30 - hash = "sha256-sHpW2yjqYz4ePR6aQFUBD6BZwgDt3DT22/kWuKr9fAc="; 30 + hash = "sha256-iEHTFofga/HV/1jSAqTsqV55zC22tqI7UW7m4PZgz0M="; 31 31 }; 32 32 33 - cargoSha256 = "sha256-Pg3V6Bd+drFPiJtUwsoKxu6snN88KvM+lsvnWBK/rvk="; 33 + cargoHash = "sha256-ijlivyBezLECBSaWBYVy9tVcSO8U+yGDQyU4dIATR6k="; 34 34 35 35 nativeBuildInputs = [ 36 36 pkg-config
+1 -1
pkgs/applications/networking/mailreaders/neomutt/default.nix
··· 118 118 description = "A small but very powerful text-based mail client"; 119 119 homepage = "http://www.neomutt.org"; 120 120 license = licenses.gpl2Plus; 121 - maintainers = with maintainers; [ cstrahan erikryb jfrankenau vrthra ma27 raitobezarius ]; 121 + maintainers = with maintainers; [ erikryb jfrankenau vrthra ma27 raitobezarius ]; 122 122 platforms = platforms.unix; 123 123 }; 124 124 }
+22
pkgs/applications/office/roam-research/common.nix
··· 1 + { fetchurl }: 2 + let 3 + pname = "roam-research"; 4 + version = "0.0.18"; 5 + in 6 + { 7 + inherit pname version; 8 + sources = { 9 + x86_64-darwin = fetchurl { 10 + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/Roam+Research-${version}.dmg"; 11 + hash = "sha256-jyFNH3qrgrsftExL/b2t8bY3W3fYVz+Gp11AuaIMxbg="; 12 + }; 13 + aarch64-darwin = fetchurl { 14 + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/Roam+Research-${version}-arm64.dmg"; 15 + hash = "sha256-AnyvFCbyUi6tcgxYQAj+zPLl4/kVh9ZeupetRhzH0PU="; 16 + }; 17 + x86_64-linux = fetchurl { 18 + url = "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/${pname}_${version}_amd64.deb"; 19 + hash = "sha256-veDWBFZbODsdaO1UdfuC4w6oGCkeVBe+fqKn5XVHKDQ="; 20 + }; 21 + }; 22 + }
+34
pkgs/applications/office/roam-research/darwin.nix
··· 1 + { lib, stdenv, undmg, fetchurl }: 2 + let 3 + common = import ./common.nix { inherit fetchurl; }; 4 + inherit (stdenv.hostPlatform) system; 5 + in 6 + stdenv.mkDerivation rec { 7 + inherit (common) pname version; 8 + src = common.sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 9 + 10 + appName = "Roam Research"; 11 + 12 + sourceRoot = "."; 13 + 14 + nativeBuildInputs = [ undmg ]; 15 + installPhase = '' 16 + runHook preInstall 17 + 18 + mkdir -p "$out/Applications" 19 + cp -R *.app "$out/Applications" 20 + 21 + mkdir -p $out/bin 22 + ln -s "$out/Applications/${appName}.app/Contents/MacOS/${appName}" "$out/bin/${appName}" 23 + runHook postInstall 24 + ''; 25 + 26 + meta = with lib; { 27 + description = "A note-taking tool for networked thought"; 28 + homepage = "https://roamresearch.com/"; 29 + maintainers = with lib.maintainers; [ dbalan ]; 30 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 31 + license = licenses.unfree; 32 + platforms = [ "x86_64-darwin" "aarch64-darwin" ]; 33 + }; 34 + }
+7 -80
pkgs/applications/office/roam-research/default.nix
··· 1 - { stdenv, lib, fetchurl, alsa-lib, atk, cairo, cups, dbus, dpkg, expat 2 - , gdk-pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor 3 - , libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm 4 - , libpulseaudio, libxcb, libxkbcommon, libxshmfence, mesa, nspr, nss, pango 5 - , udev, }: 6 - 1 + { stdenv, callPackage, ... }@args: 7 2 let 8 - libPath = lib.makeLibraryPath [ 9 - alsa-lib 10 - atk 11 - cairo 12 - cups 13 - dbus 14 - expat 15 - gdk-pixbuf 16 - glib 17 - gtk3 18 - libX11 19 - libXcomposite 20 - libXdamage 21 - libXext 22 - libXfixes 23 - libXi 24 - libXrandr 25 - libdrm 26 - libxcb 27 - libxkbcommon 28 - libxshmfence 29 - mesa 30 - nspr 31 - nss 32 - pango 33 - stdenv.cc.cc 34 - libXScrnSaver 35 - libXcursor 36 - libXrender 37 - libXtst 38 - libpulseaudio 39 - udev 40 - ]; 41 - in stdenv.mkDerivation rec { 42 - pname = "roam-research"; 43 - version = "0.0.18"; 44 - 45 - src = fetchurl { 46 - url = 47 - "https://roam-electron-deploy.s3.us-east-2.amazonaws.com/${pname}_${version}_amd64.deb"; 48 - sha256 = "sha256-veDWBFZbODsdaO1UdfuC4w6oGCkeVBe+fqKn5XVHKDQ="; 49 - }; 50 - 51 - nativeBuildInputs = [ dpkg ]; 52 - 53 - unpackPhase = '' 54 - mkdir pkg 55 - dpkg-deb -x $src pkg 56 - sourceRoot=pkg 57 - ''; 58 - 59 - installPhase = '' 60 - mkdir -p "$out/bin" 61 - mv opt "$out/" 62 - 63 - ln -s "$out/opt/Roam Research/roam-research" "$out/bin/roam-research" 64 - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:$out/opt/Roam Research:\$ORIGIN" "$out/opt/Roam Research/roam-research" 65 - 66 - mv usr/* "$out/" 67 - 68 - substituteInPlace $out/share/applications/roam-research.desktop \ 69 - --replace "/opt/Roam Research/roam-research" "roam-research" 70 - ''; 71 - 72 - dontPatchELF = true; 73 - meta = with lib; { 74 - description = "A note-taking tool for networked thought."; 75 - homepage = "https://roamresearch.com/"; 76 - maintainers = with lib.maintainers; [ dbalan ]; 77 - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 78 - license = licenses.unfree; 79 - platforms = [ "x86_64-linux" ]; 80 - }; 81 - } 3 + extraArgs = removeAttrs args [ "callPackage" ]; 4 + in 5 + if stdenv.isDarwin then 6 + callPackage ./darwin.nix (extraArgs // { }) 7 + else 8 + callPackage ./linux.nix (extraArgs // { })
+73
pkgs/applications/office/roam-research/linux.nix
··· 1 + { stdenv, lib, fetchurl, alsa-lib, atk, cairo, cups, dbus, dpkg, expat 2 + , gdk-pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor 3 + , libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libdrm 4 + , libpulseaudio, libxcb, libxkbcommon, libxshmfence, mesa, nspr, nss, pango 5 + , udev, }: 6 + 7 + let 8 + common = import ./common.nix { inherit fetchurl; }; 9 + inherit (stdenv.hostPlatform) system; 10 + libPath = lib.makeLibraryPath [ 11 + alsa-lib 12 + atk 13 + cairo 14 + cups 15 + dbus 16 + expat 17 + gdk-pixbuf 18 + glib 19 + gtk3 20 + libX11 21 + libXcomposite 22 + libXdamage 23 + libXext 24 + libXfixes 25 + libXi 26 + libXrandr 27 + libdrm 28 + libxcb 29 + libxkbcommon 30 + libxshmfence 31 + mesa 32 + nspr 33 + nss 34 + pango 35 + stdenv.cc.cc 36 + libXScrnSaver 37 + libXcursor 38 + libXrender 39 + libXtst 40 + libpulseaudio 41 + udev 42 + ]; 43 + in stdenv.mkDerivation rec { 44 + inherit (common) pname version; 45 + src = common.sources.${system} or (throw "Source for ${pname} is not available for ${system}"); 46 + 47 + nativeBuildInputs = [ dpkg ]; 48 + 49 + installPhase = '' 50 + mkdir -p "$out/bin" 51 + mv opt "$out/" 52 + 53 + ln -s "$out/opt/Roam Research/roam-research" "$out/bin/roam-research" 54 + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}:$out/opt/Roam Research:\$ORIGIN" "$out/opt/Roam Research/roam-research" 55 + 56 + mv usr/* "$out/" 57 + 58 + substituteInPlace $out/share/applications/roam-research.desktop \ 59 + --replace "/opt/Roam Research/roam-research" "roam-research" 60 + ''; 61 + 62 + # autoPatchelfHook/patchelf are not used because they cause the binary to coredump. 63 + dontPatchELF = true; 64 + 65 + meta = with lib; { 66 + description = "A note-taking tool for networked thought"; 67 + homepage = "https://roamresearch.com/"; 68 + maintainers = with lib.maintainers; [ dbalan ]; 69 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 70 + license = licenses.unfree; 71 + platforms = [ "x86_64-linux" ]; 72 + }; 73 + }
+4 -4
pkgs/applications/terminal-emulators/kitty/themes.nix
··· 5 5 6 6 stdenvNoCC.mkDerivation rec { 7 7 pname = "kitty-themes"; 8 - version = "unstable-2023-06-01"; 8 + version = "unstable-2023-09-15"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "kovidgoyal"; 12 12 repo = "kitty-themes"; 13 - rev = "f765eb1715d79c6cb3ad3d571342d612f21b810e"; 14 - hash = "sha256-Y3N8cyqEsY/kB2xMIlPYnbuYUs8grzepPx/11maG4bo="; 13 + rev = "c9c12d20f83b9536febb21e4b53e176c0ccccb51"; 14 + hash = "sha256-dhzYTHaaTrbE5k+xEC01Y9jGb+ZmEyvWMb4a2WWKGCw="; 15 15 }; 16 16 17 17 dontConfigure = true; ··· 30 30 homepage = "https://github.com/kovidgoyal/kitty-themes"; 31 31 description = "Themes for the kitty terminal emulator"; 32 32 license = lib.licenses.gpl3Only; 33 - maintainers = with lib.maintainers; [ AndersonTorres nelsonjeppesen ]; 33 + maintainers = with lib.maintainers; [ ]; 34 34 platforms = lib.platforms.all; 35 35 }; 36 36 }
+1 -1
pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-font-size/default.nix
··· 24 24 description = "Change the urxvt font size on the fly"; 25 25 homepage = "https://github.com/majutsushi/urxvt-font-size"; 26 26 license = licenses.mit; 27 - maintainers = with maintainers; [ cstrahan ]; 27 + maintainers = with maintainers; [ ]; 28 28 platforms = with platforms; unix; 29 29 }; 30 30 }
+1 -1
pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-perl/default.nix
··· 24 24 description = "Perl extensions for the rxvt-unicode terminal emulator"; 25 25 homepage = "https://github.com/effigies/urxvt-perl"; 26 26 license = licenses.gpl3; 27 - maintainers = with maintainers; [ cstrahan ]; 27 + maintainers = with maintainers; [ ]; 28 28 platforms = with platforms; unix; 29 29 }; 30 30 }
+1 -1
pkgs/applications/version-management/vcprompt/default.nix
··· 23 23 about the current working directory for various version control systems 24 24 ''; 25 25 homepage = "http://hg.gerg.ca/vcprompt"; 26 - maintainers = with maintainers; [ cstrahan ]; 26 + maintainers = with maintainers; [ ]; 27 27 platforms = with platforms; linux ++ darwin; 28 28 license = licenses.gpl2Plus; 29 29 };
+3 -3
pkgs/by-name/as/ast-grep/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "ast-grep"; 9 - version = "0.12.2"; 9 + version = "0.12.4"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "ast-grep"; 13 13 repo = "ast-grep"; 14 14 rev = version; 15 - hash = "sha256-N9hfHgzqwV/G3/xNY2Vx1i2dW6BcABJ/4lkhnLuvIns="; 15 + hash = "sha256-rWfuPk8PWxOmy/WDXGnqBCuGPEI7tBwuOc0IP2FhAq8="; 16 16 }; 17 17 18 - cargoHash = "sha256-3ntsPC6OWtSN3MH+3wN2BgOqH69jiW93/xfLY+niARI="; 18 + cargoHash = "sha256-M3eNvY8UwsnV9mvkGD//u1zTiJzV1ce7ODyQjnDSZTo="; 19 19 20 20 # error: linker `aarch64-linux-gnu-gcc` not found 21 21 postPatch = ''
-1
pkgs/data/fonts/iosevka/bin.nix
··· 33 33 meta = { 34 34 inherit (iosevka.meta) homepage downloadPage description license platforms; 35 35 maintainers = with lib.maintainers; [ 36 - cstrahan 37 36 montchr 38 37 ]; 39 38 };
-1
pkgs/data/fonts/iosevka/default.nix
··· 136 136 license = licenses.ofl; 137 137 platforms = platforms.all; 138 138 maintainers = with maintainers; [ 139 - cstrahan 140 139 jfrankenau 141 140 ttuegel 142 141 babariviere
+1 -1
pkgs/data/icons/vanilla-dmz/default.nix
··· 56 56 description = "A style neutral scalable cursor theme"; 57 57 platforms = platforms.all; 58 58 license = licenses.cc-by-sa-30; 59 - maintainers = with maintainers; [ cstrahan ]; 59 + maintainers = with maintainers; [ ]; 60 60 }; 61 61 }
+4 -1
pkgs/development/compilers/gcc/common/pre-configure.nix
··· 119 119 # gcc->clang "cross"-compilation manages to evade it: there 120 120 # hostPlatform != targetPlatform, hostPlatform.config == targetPlatform.config. 121 121 # We explicitly inhibit libc headers use in this case as well. 122 - + lib.optionalString (targetPlatform != hostPlatform && withoutTargetLibc) '' 122 + + lib.optionalString (targetPlatform != hostPlatform && 123 + withoutTargetLibc && 124 + targetPlatform.config == hostPlatform.config && 125 + (stdenv.cc.isClang || stdenv.targetPlatform.useLLVM)) '' 123 126 export inhibit_libc=true 124 127 '' 125 128
+1 -1
pkgs/development/compilers/rust/rustc.nix
··· 263 263 meta = with lib; { 264 264 homepage = "https://www.rust-lang.org/"; 265 265 description = "A safe, concurrent, practical language"; 266 - maintainers = with maintainers; [ cstrahan globin havvy ] ++ teams.rust.members; 266 + maintainers = with maintainers; [ globin havvy ] ++ teams.rust.members; 267 267 license = [ licenses.mit licenses.asl20 ]; 268 268 platforms = [ 269 269 # Platforms with host tools from
+1 -1
pkgs/development/libraries/backward-cpp/default.nix
··· 25 25 homepage = "https://github.com/bombela/backward-cpp"; 26 26 license = licenses.mit; 27 27 platforms = platforms.all; 28 - maintainers = with maintainers; [ cstrahan ]; 28 + maintainers = with maintainers; [ ]; 29 29 }; 30 30 }
+1 -1
pkgs/development/libraries/capnproto/default.nix
··· 31 31 ''; 32 32 license = licenses.mit; 33 33 platforms = platforms.all; 34 - maintainers = with maintainers; [ cstrahan ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/libraries/keybinder3/default.nix
··· 39 39 homepage = "https://github.com/kupferlauncher/keybinder/"; 40 40 license = licenses.mit; 41 41 platforms = platforms.unix; 42 - maintainers = [ maintainers.cstrahan ]; 42 + maintainers = [ ]; 43 43 }; 44 44 }
+1 -1
pkgs/development/libraries/libmx/default.nix
··· 56 56 feature is the possibility setting style properties from a CSS format 57 57 file.''; 58 58 license = licenses.lgpl21; 59 - maintainers = with maintainers; [ cstrahan ]; 59 + maintainers = with maintainers; [ ]; 60 60 platforms = with platforms; linux; 61 61 }; 62 62 }
+1 -1
pkgs/development/libraries/libtsm/default.nix
··· 26 26 description = "Terminal-emulator State Machine"; 27 27 homepage = "http://www.freedesktop.org/wiki/Software/kmscon/libtsm/"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ cstrahan ]; 29 + maintainers = with maintainers; [ ]; 30 30 platforms = platforms.linux; 31 31 }; 32 32 }
+1 -1
pkgs/development/libraries/libuchardet/default.nix
··· 19 19 description = "Mozilla's Universal Charset Detector C/C++ API"; 20 20 homepage = "https://www.freedesktop.org/wiki/Software/uchardet/"; 21 21 license = licenses.mpl11; 22 - maintainers = with maintainers; [ cstrahan ]; 22 + maintainers = with maintainers; [ ]; 23 23 platforms = with platforms; unix; 24 24 }; 25 25 }
+1 -1
pkgs/development/libraries/libuv/default.nix
··· 113 113 description = "A multi-platform support library with a focus on asynchronous I/O"; 114 114 homepage = "https://libuv.org/"; 115 115 changelog = "https://github.com/libuv/libuv/blob/v${finalAttrs.version}/ChangeLog"; 116 - maintainers = with maintainers; [ cstrahan ]; 116 + maintainers = with maintainers; [ ]; 117 117 platforms = platforms.all; 118 118 license = with licenses; [ mit isc bsd2 bsd3 cc-by-40 ]; 119 119 };
+1 -1
pkgs/development/libraries/lightstep-tracer-cpp/default.nix
··· 31 31 homepage = "https://lightstep.com/"; 32 32 license = licenses.mit; 33 33 platforms = platforms.linux; 34 - maintainers = with maintainers; [ cstrahan ]; 34 + maintainers = with maintainers; [ ]; 35 35 }; 36 36 }
+1 -1
pkgs/development/libraries/linenoise-ng/default.nix
··· 16 16 meta = { 17 17 homepage = "https://github.com/arangodb/linenoise-ng"; 18 18 description = "A small, portable GNU readline replacement for Linux, Windows and MacOS which is capable of handling UTF-8 characters"; 19 - maintainers = with lib.maintainers; [ cstrahan ]; 19 + maintainers = with lib.maintainers; [ ]; 20 20 platforms = lib.platforms.all; 21 21 license = lib.licenses.bsd3; 22 22 };
+2 -2
pkgs/development/libraries/llhttp/default.nix
··· 2 2 3 3 stdenv.mkDerivation (finalAttrs: { 4 4 pname = "llhttp"; 5 - version = "9.1.2"; 5 + version = "9.1.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "nodejs"; 9 9 repo = "llhttp"; 10 10 rev = "release/v${finalAttrs.version}"; 11 - hash = "sha256-kW6u9ETZJcJBh150chfE3SEwFpT7evZ0cqz8caM7fbQ="; 11 + hash = "sha256-QacjukWkRCuQA4qzUq45521YOBLPuOSKNR1pVxgxe9o="; 12 12 }; 13 13 14 14 outputs = [ "out" "dev" ];
+1 -1
pkgs/development/libraries/mailcore2/default.nix
··· 54 54 description = "A simple and asynchronous API to work with e-mail protocols IMAP, POP and SMTP"; 55 55 homepage = "http://libmailcore.com"; 56 56 license = licenses.bsd3; 57 - maintainers = with maintainers; [ cstrahan ]; 57 + maintainers = with maintainers; [ ]; 58 58 }; 59 59 }
+1 -1
pkgs/development/libraries/rapidjson/default.nix
··· 53 53 homepage = "http://rapidjson.org/"; 54 54 license = licenses.mit; 55 55 platforms = platforms.unix; 56 - maintainers = with maintainers; [ cstrahan dotlambda ]; 56 + maintainers = with maintainers; [ dotlambda ]; 57 57 }; 58 58 }
+1 -1
pkgs/development/libraries/v8/default.nix
··· 174 174 meta = with lib; { 175 175 homepage = "https://v8.dev/"; 176 176 description = "Google's open source JavaScript engine"; 177 - maintainers = with maintainers; [ cstrahan proglodyte matthewbauer ]; 177 + maintainers = with maintainers; [ proglodyte matthewbauer ]; 178 178 platforms = platforms.unix; 179 179 license = licenses.bsd3; 180 180 };
+2 -1
pkgs/development/nim-packages/atlas/default.nix
··· 1 - { lib, buildNimPackage, fetchFromGitHub }: 1 + { lib, buildNimPackage, fetchFromGitHub, openssl }: 2 2 3 3 buildNimPackage (final: prev: { 4 4 pname = "atlas"; ··· 10 10 rev = "ab22f997c22a644924c1a9b920f8ce207da9b77f"; 11 11 hash = "sha256-TsZ8TriVuKEY9/mV6KR89eFOgYrgTqXmyv/vKu362GU="; 12 12 }; 13 + buildInputs = [ openssl ]; 13 14 prePatch = '' 14 15 rm config.nims 15 16 ''; # never trust a .nims file
+3 -7
pkgs/development/ocaml-modules/zmq/default.nix
··· 2 2 3 3 buildDunePackage rec { 4 4 pname = "zmq"; 5 - version = "5.1.5"; 6 - 7 - duneVersion = "3"; 5 + version = "5.2.1"; 8 6 9 7 src = fetchurl { 10 - url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-lwt-${version}.tbz"; 11 - sha256 = "sha256-mUfRPatLPFeSzWDwCIoFaVl85VkvDch4i6pOn3Kme1Y="; 8 + url = "https://github.com/issuu/ocaml-zmq/releases/download/${version}/zmq-${version}.tbz"; 9 + hash = "sha256-hVKfaTrUFqEBsv5hFB7JwsR630M0DKnqhB0QHpxcHKc="; 12 10 }; 13 11 14 12 buildInputs = [ czmq dune-configurator ]; 15 - 16 - propagatedBuildInputs = [ stdint ]; 17 13 18 14 meta = { 19 15 description = "ZeroMQ bindings for OCaml";
+2 -3
pkgs/development/ocaml-modules/zmq/lwt.nix
··· 1 - { buildDunePackage, zmq, ocaml_lwt }: 1 + { buildDunePackage, zmq, lwt }: 2 2 3 3 buildDunePackage { 4 4 pname = "zmq-lwt"; 5 5 inherit (zmq) version src meta; 6 - duneVersion = "3"; 7 6 8 - propagatedBuildInputs = [ zmq ocaml_lwt ]; 7 + propagatedBuildInputs = [ zmq lwt ]; 9 8 }
+2 -2
pkgs/development/python-modules/aio-pika/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "aio-pika"; 18 - version = "9.1.3"; 18 + version = "9.3.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "mosquito"; 25 25 repo = pname; 26 26 rev = "refs/tags/${version}"; 27 - hash = "sha256-QCM/9Vt9/uXylaU8xymXJEjVd6sFRcVhpr2CGjB0AoY="; 27 + hash = "sha256-Fy3vTXfj+gu/+PYWPfcOZ/D7boRiZYcFPX29p28HoGs="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/aioairzone-cloud/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "aioairzone-cloud"; 12 - version = "0.2.2"; 12 + version = "0.2.4"; 13 13 format = "pyproject"; 14 14 15 15 disabled = pythonOlder "3.7"; ··· 18 18 owner = "Noltari"; 19 19 repo = "aioairzone-cloud"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-SGHbM7D21ykFWwg4aTUUMIFpwZ0K8CQohZYtzXOPJQg="; 21 + hash = "sha256-7sjiY20jDUHtEnqAMwEHsBboK9XCH5XjE0sHR82YvEA="; 22 22 }; 23 23 24 24 nativeBuildInputs = [
+18 -4
pkgs/development/python-modules/aiohue/default.nix
··· 5 5 , buildPythonPackage 6 6 , fetchFromGitHub 7 7 , pytestCheckHook 8 + , pytest-aiohttp 9 + , pytest-asyncio 8 10 , pythonOlder 11 + , setuptools 9 12 }: 10 13 11 14 buildPythonPackage rec { 12 15 pname = "aiohue"; 13 - version = "4.6.2"; 14 - format = "setuptools"; 16 + version = "4.7.0"; 17 + pyproject = true; 15 18 16 - disabled = pythonOlder "3.8"; 19 + disabled = pythonOlder "3.10"; 17 20 18 21 src = fetchFromGitHub { 19 22 owner = "home-assistant-libs"; 20 23 repo = pname; 21 24 rev = "refs/tags/${version}"; 22 - hash = "sha256-DzslGfKwsXXWWhbTb0apJCsnNdnUe7AbvrRT8ZnPbVU="; 25 + hash = "sha256-t48rUPAM0XpbDreCwHU/smoyhPtxhwrpDkb1170GkQM="; 23 26 }; 24 27 28 + postPatch = '' 29 + substituteInPlace pyproject.toml \ 30 + --replace 'version = "0.0.0"' 'version = "${version}"' 31 + ''; 32 + 33 + nativeBuildInputs = [ 34 + setuptools 35 + ]; 36 + 25 37 propagatedBuildInputs = [ 26 38 awesomeversion 27 39 aiohttp ··· 30 42 31 43 nativeCheckInputs = [ 32 44 pytestCheckHook 45 + pytest-asyncio 46 + pytest-aiohttp 33 47 ]; 34 48 35 49 pythonImportsCheck = [
+4 -2
pkgs/development/python-modules/aiounifi/default.nix
··· 10 10 , pythonOlder 11 11 , segno 12 12 , setuptools 13 + , trustme 13 14 , wheel 14 15 }: 15 16 16 17 buildPythonPackage rec { 17 18 pname = "aiounifi"; 18 - version = "62"; 19 + version = "63"; 19 20 format = "pyproject"; 20 21 21 22 disabled = pythonOlder "3.11"; ··· 24 25 owner = "Kane610"; 25 26 repo = pname; 26 27 rev = "refs/tags/v${version}"; 27 - hash = "sha256-5XCF67YuelS4RDUxfImSAELfdb3rJWGprIYQeQPp+yk="; 28 + hash = "sha256-am11pFgYMRccUNaK/iKdp6mfk5NQ4QnU41xbFiGCMPs="; 28 29 }; 29 30 30 31 postPatch = '' ··· 51 52 pytest-aiohttp 52 53 pytest-asyncio 53 54 pytestCheckHook 55 + trustme 54 56 ]; 55 57 56 58 pytestFlagsArray = [
+2 -2
pkgs/development/python-modules/faadelays/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "faadelays"; 11 - version = "2023.8.0"; 11 + version = "2023.9.1"; 12 12 format = "pyproject"; 13 13 14 14 disabled = pythonOlder "3.6"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-VAQQI9cMRKGe7RAUxoI1bBojzRq6cRz2jpeDA+GMuUI="; 18 + hash = "sha256-ngMFd+BE3hKeaeGEX4xHpzDIrtGFDsSwxBbrc4ZMFas="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/fake-useragent/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "fake-useragent"; 13 - version = "1.2.1"; 13 + version = "1.3.0"; 14 14 format = "pyproject"; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 19 19 owner = "fake-useragent"; 20 20 repo = "fake-useragent"; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-kOvVqdfK9swtjW8D7COrZksLCu1N8sQO8rzx5RZqCT0="; 22 + hash = "sha256-erGX52ipM0scn3snICf6ipjgVbV8/H5xT4GP3AtvOwo="; 23 23 }; 24 24 25 25 postPatch = ''
+8 -5
pkgs/development/python-modules/gpiozero/default.nix
··· 4 4 , sphinx-rtd-theme 5 5 , sphinxHook 6 6 , colorzero 7 - , mock 8 7 , pythonOlder 9 8 , pytestCheckHook 10 9 }: 11 10 12 11 buildPythonPackage rec { 13 12 pname = "gpiozero"; 14 - version = "1.6.2"; 13 + version = "2.0"; 15 14 format = "setuptools"; 16 15 17 - disabled = pythonOlder "3.7"; 16 + disabled = pythonOlder "3.9"; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "gpiozero"; 21 20 repo = pname; 22 21 rev = "refs/tags/v${version}"; 23 - hash = "sha256-dmFc3DNTlEajYQ5e8QK2WfehwYwAsWyG2cxKg5ykEaI="; 22 + hash = "sha256-6qSB9RMypNXNj+Ds1nyzB7iaeHXvF0swSubrJSn2L34="; 24 23 }; 25 24 25 + postPatch = '' 26 + substituteInPlace setup.cfg \ 27 + --replace " --cov" "" 28 + ''; 29 + 26 30 outputs = [ 27 31 "out" 28 32 "doc" ··· 38 42 ]; 39 43 40 44 nativeCheckInputs = [ 41 - mock 42 45 pytestCheckHook 43 46 ]; 44 47
+1 -1
pkgs/development/python-modules/jupyterhub/default.nix
··· 201 201 homepage = "https://jupyter.org/"; 202 202 changelog = "https://github.com/jupyterhub/jupyterhub/blob/${version}/docs/source/reference/changelog.md"; 203 203 license = licenses.bsd3; 204 - maintainers = with maintainers; [ ixxie cstrahan ]; 204 + maintainers = with maintainers; [ ixxie ]; 205 205 # darwin: E OSError: dlopen(/nix/store/43zml0mlr17r5jsagxr00xxx91hz9lky-openpam-20170430/lib/libpam.so, 6): image not found 206 206 broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 207 207 };
+2 -2
pkgs/development/python-modules/matrix-nio/default.nix
··· 29 29 30 30 buildPythonPackage rec { 31 31 pname = "matrix-nio"; 32 - version = "0.20.1"; 32 + version = "0.21.2"; 33 33 format = "pyproject"; 34 34 35 35 src = fetchFromGitHub { 36 36 owner = "poljar"; 37 37 repo = "matrix-nio"; 38 38 rev = version; 39 - hash = "sha256-6oMOfyl8yR8FMprPYD831eiXh9g/bqslvxDmVcrNK80="; 39 + hash = "sha256-eK5DPmPZ/hv3i3lzoIuS9sJXKpUNhmBv4+Nw2u/RZi0="; 40 40 }; 41 41 42 42 postPatch = ''
+2 -2
pkgs/development/python-modules/plexapi/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "plexapi"; 12 - version = "4.15.3"; 12 + version = "4.15.4"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 18 18 owner = "pkkid"; 19 19 repo = "python-plexapi"; 20 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-3Rnwo6KpOsfrIWmJjxh1DSDFoVqBckB0uZh5PdsjRO8="; 21 + hash = "sha256-NBV4jrLfU5vqQljQh28tJxgaNSo/ilph8xsjdVKCOJg="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [
+1 -1
pkgs/development/python-modules/pycapnp/default.nix
··· 31 31 32 32 meta = with lib; { 33 33 homepage = "https://capnproto.github.io/pycapnp/"; 34 - maintainers = with maintainers; [ cstrahan lukeadams ]; 34 + maintainers = with maintainers; [ ]; 35 35 license = licenses.bsd2; 36 36 # No support for capnproto 1.0 yet 37 37 # https://github.com/capnproto/pycapnp/issues/323
+5
pkgs/development/python-modules/pyenphase/default.nix
··· 56 56 syrupy 57 57 ]; 58 58 59 + disabledTests = [ 60 + # https://github.com/pyenphase/pyenphase/issues/97 61 + "test_with_7_x_firmware" 62 + ]; 63 + 59 64 pythonImportsCheck = [ 60 65 "pyenphase" 61 66 ];
+2 -2
pkgs/development/python-modules/pygithub/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "pygithub"; 16 - version = "1.59.1"; 16 + version = "2.1.1"; 17 17 format = "setuptools"; 18 18 19 19 disabled = pythonOlder "3.7"; ··· 22 22 owner = "PyGithub"; 23 23 repo = "PyGithub"; 24 24 rev = "refs/tags/v${version}"; 25 - hash = "sha256-tzM2+nLBHTbKlQ7HLmNRq4Kn62vmz1MaGyZsnaJSrgQ="; 25 + hash = "sha256-ysa1RAWuFFQCF6bYwAUVFou7nxCKHLZbUtrUtXiSpPk="; 26 26 }; 27 27 28 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+53
pkgs/development/python-modules/pyserial-asyncio-fast/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # build-system 6 + , setuptools 7 + , wheel 8 + 9 + # dependencies 10 + , pyserial 11 + 12 + # tests 13 + , pytestCheckHook 14 + , pytest-asyncio 15 + }: 16 + 17 + buildPythonPackage rec { 18 + pname = "pyserial-asyncio-fast"; 19 + version = "0.11"; 20 + pyproject = true; 21 + 22 + src = fetchFromGitHub { 23 + owner = "bdraco"; 24 + repo = "pyserial-asyncio-fast"; 25 + rev = version; 26 + hash = "sha256-B1CLk7ggI7l+DaMDlnMjl2tfh+evvaf1nxzBpmqMBZk="; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + setuptools 31 + wheel 32 + ]; 33 + 34 + propagatedBuildInputs = [ 35 + pyserial 36 + ]; 37 + 38 + pythonImportsCheck = [ 39 + "serial_asyncio_fast" 40 + ]; 41 + 42 + nativeCheckInputs = [ 43 + pytestCheckHook 44 + pytest-asyncio 45 + ]; 46 + 47 + meta = with lib; { 48 + description = "Fast asyncio extension package for pyserial that implements eager writes"; 49 + homepage = "https://github.com/bdraco/pyserial-asyncio-fast"; 50 + license = licenses.bsd3; 51 + maintainers = with maintainers; [ hexa ]; 52 + }; 53 + }
+32 -21
pkgs/development/python-modules/pytensor/default.nix
··· 1 - { stdenv 2 - , lib 1 + { lib 3 2 , buildPythonPackage 3 + , fetchFromGitHub 4 + , cython 5 + , versioneer 4 6 , cons 5 - , cython 6 7 , etuples 7 - , fetchFromGitHub 8 8 , filelock 9 + , logical-unification 10 + , minikanren 11 + , numpy 12 + , scipy 13 + , typing-extensions 9 14 , jax 10 15 , jaxlib 11 - , logical-unification 12 - , minikanren 13 16 , numba 14 17 , numba-scipy 15 - , numpy 18 + , pytest-mock 16 19 , pytestCheckHook 17 20 , pythonOlder 18 - , scipy 19 - , typing-extensions 21 + # Tensorflow is currently (2023/10/04) broken. 22 + # Thus, we don't provide this optional test dependency. 23 + # , tensorflow-probability 24 + , stdenv 20 25 }: 21 26 22 27 buildPythonPackage rec { 23 28 pname = "pytensor"; 24 - version = "2.16.1"; 25 - format = "setuptools"; 29 + version = "2.17.1"; 30 + pyproject = true; 26 31 27 - disabled = pythonOlder "3.7"; 32 + disabled = pythonOlder "3.9"; 28 33 29 34 src = fetchFromGitHub { 30 35 owner = "pymc-devs"; 31 - repo = pname; 36 + repo = "pytensor"; 32 37 rev = "refs/tags/rel-${version}"; 33 - hash = "sha256-GP1sL2cqZ8ucrCpigwR7HxgeQT+RnZjIIt7gx/3GtIE="; 38 + hash = "sha256-xXS0uNR5rlmUjt9/TW/X/pQc5MS/MwHSQGCp7BkAVYg="; 34 39 }; 35 40 41 + postPatch = '' 42 + substituteInPlace pyproject.toml \ 43 + --replace "versioneer[toml]==0.28" "versioneer[toml]" 44 + ''; 45 + 36 46 nativeBuildInputs = [ 37 47 cython 48 + versioneer 38 49 ]; 39 50 40 51 propagatedBuildInputs = [ ··· 48 59 typing-extensions 49 60 ]; 50 61 51 - checkInputs = [ 62 + nativeCheckInputs = [ 52 63 jax 53 64 jaxlib 54 65 numba 55 66 numba-scipy 67 + pytest-mock 56 68 pytestCheckHook 69 + # Tensorflow is currently (2023/10/04) broken. 70 + # Thus, we don't provide this optional test dependency. 71 + # tensorflow-probability 57 72 ]; 58 73 59 - postPatch = '' 60 - substituteInPlace setup.cfg \ 61 - --replace "--durations=50" "" 62 - ''; 63 - 64 74 preBuild = '' 65 75 export HOME=$(mktemp -d) 66 76 ''; ··· 76 86 "test_logsumexp_benchmark" 77 87 "test_scan_multiple_output" 78 88 "test_vector_taps_benchmark" 89 + # Temporarily disabled because of broken tensorflow-probability 90 + "test_tfp_ops" 79 91 ]; 80 92 81 93 disabledTestPaths = [ 82 94 # Don't run the most compute-intense tests 83 95 "tests/scan/" 84 96 "tests/tensor/" 85 - "tests/sandbox/" 86 97 "tests/sparse/sandbox/" 87 98 ]; 88 99
+2 -2
pkgs/development/python-modules/python-roborock/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "python-roborock"; 23 - version = "0.34.5"; 23 + version = "0.34.6"; 24 24 format = "pyproject"; 25 25 26 26 disabled = pythonOlder "3.10"; ··· 29 29 owner = "humbertogontijo"; 30 30 repo = "python-roborock"; 31 31 rev = "refs/tags/v${version}"; 32 - hash = "sha256-BJZ24TfdIybSzLLWn7+vRMaxnBKVZSzCNLzKFaFvhok="; 32 + hash = "sha256-c55E5J0PKk9FG3KDIO0R3vGQjYjj8u7zXz8o9oA1Grc="; 33 33 }; 34 34 35 35 postPatch = ''
+17 -9
pkgs/development/python-modules/twitchapi/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , pythonOlder 4 - , fetchPypi 4 + , fetchFromGitHub 5 + , setuptools 6 + , wheel 5 7 , aiohttp 6 8 , python-dateutil 7 9 , typing-extensions ··· 9 11 10 12 buildPythonPackage rec { 11 13 pname = "twitchapi"; 12 - version = "3.11.0"; 14 + version = "4.0.1"; 13 15 14 16 disabled = pythonOlder "3.7"; 15 17 16 - format = "setuptools"; 18 + format = "pyproject"; 17 19 18 - src = fetchPypi { 19 - pname = "twitchAPI"; 20 - inherit version; 21 - hash = "sha256-TkQzF32nt89uBvC6aj/b5f2DQkOVDz7UyeUXRyVYumM="; 20 + src = fetchFromGitHub { 21 + owner = "Teekeks"; 22 + repo = "pyTwitchAPI"; 23 + rev = "refs/tags/v${version}"; 24 + hash = "sha256-WrZb734K51NYqlcMCRr8HO8E7XByioltd4vanTN8HUg="; 22 25 }; 26 + 27 + nativeBuildInputs = [ 28 + setuptools 29 + wheel 30 + ]; 23 31 24 32 propagatedBuildInputs = [ 25 33 aiohttp ··· 35 43 "twitchAPI.oauth" 36 44 "twitchAPI.pubsub" 37 45 "twitchAPI.twitch" 38 - "twitchAPI.types" 46 + "twitchAPI.type" 39 47 ]; 40 48 41 49 meta = with lib; { 42 - changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/v${version}/docs/changelog.rst"; 50 + changelog = "https://github.com/Teekeks/pyTwitchAPI/blob/${src.rev}/docs/changelog.rst"; 43 51 description = "Python implementation of the Twitch Helix API, its Webhook, PubSub and EventSub"; 44 52 homepage = "https://github.com/Teekeks/pyTwitchAPI"; 45 53 license = licenses.mit;
+752
pkgs/development/python-modules/types-aiobotocore-packages/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , aiobotocore 5 + , botocore 6 + , typing-extensions 7 + , fetchPypi 8 + }: 9 + let 10 + toUnderscore = str: builtins.replaceStrings [ "-" ] [ "_" ] str; 11 + 12 + buildTypesAiobotocorePackage = serviceName: version: hash: 13 + buildPythonPackage rec { 14 + pname = "types-aiobotocore-${serviceName}"; 15 + inherit version; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 19 + 20 + src = fetchPypi { 21 + inherit pname version hash; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiobotocore 26 + botocore 27 + ] ++ lib.optionals (pythonOlder "3.12") [ 28 + typing-extensions 29 + ]; 30 + 31 + # Project has no tests 32 + doCheck = false; 33 + 34 + pythonImportsCheck = [ 35 + "types_aiobotocore_${toUnderscore serviceName}" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Type annotations for aiobotocore ${serviceName}"; 40 + homepage = "https://github.com/youtype/mypy_boto3_builder"; 41 + license = with licenses; [ mit ]; 42 + maintainers = with maintainers; [ mbalatsko ]; 43 + }; 44 + }; 45 + in 46 + rec { 47 + types-aiobotocore-accessanalyzer = buildTypesAiobotocorePackage "accessanalyzer" "2.6.0" "sha256-Bit55lGYI8+VOEm+6NKlfxWldFWdiAFwRZjJsgwuv7Q="; 48 + 49 + types-aiobotocore-account = buildTypesAiobotocorePackage "account" "2.5.2.post3" "sha256-zuBKsuPD3Sjl8KWKIlMgKtzfmtVc8ZZyIMKyPC2QjmY="; 50 + 51 + types-aiobotocore-acm = buildTypesAiobotocorePackage "acm" "2.5.4" "sha256-B7SsW+FtSOMfFFdfmH9iv/i9R/qj6ImAr95gpPAf3G4="; 52 + 53 + types-aiobotocore-acm-pca = buildTypesAiobotocorePackage "acm-pca" "2.6.0" "sha256-AO3CEqWkLBTkx4k8YamcUUCg2TwHODCMjz6ujubzLjA="; 54 + 55 + types-aiobotocore-alexaforbusiness = buildTypesAiobotocorePackage "alexaforbusiness" "2.6.0" "sha256-Pjfm+q8Wq7BT3QfFcLuODteOZdvNXSegde1sc6z2UOk="; 56 + 57 + types-aiobotocore-amp = buildTypesAiobotocorePackage "amp" "2.6.0" "sha256-EZ/wSfcWnT7DoSRegMZnzukVLlTFYP2UsR+rEiLwtnE="; 58 + 59 + types-aiobotocore-amplify = buildTypesAiobotocorePackage "amplify" "2.6.0" "sha256-IkvRE9xD0y8l48rWuV1cvnOQ7eHr0hYsrD3NusofgyI="; 60 + 61 + types-aiobotocore-amplifybackend = buildTypesAiobotocorePackage "amplifybackend" "2.6.0" "sha256-4sSNDhmNuOnYPq0X/G8m0XDP08W+MUQ3xiWK9Yc8U6Q="; 62 + 63 + types-aiobotocore-amplifyuibuilder = buildTypesAiobotocorePackage "amplifyuibuilder" "2.6.0" "sha256-K1esoNUDYWzqK12X6o5c12XJQGGDNlCyUiVsNsUaQhI="; 64 + 65 + types-aiobotocore-apigateway = buildTypesAiobotocorePackage "apigateway" "2.6.0" "sha256-r4eDPDqkcQhApN/+4xjDuillQnDOqu2xqyACYHqXRpw="; 66 + 67 + types-aiobotocore-apigatewaymanagementapi = buildTypesAiobotocorePackage "apigatewaymanagementapi" "2.6.0" "sha256-sAJW4q/mUaRsiN7Yt/uBMbxDfKhTSdiZaDd7nvvM3og="; 68 + 69 + types-aiobotocore-apigatewayv2 = buildTypesAiobotocorePackage "apigatewayv2" "2.6.0" "sha256-cNNVvAX1o+ZieUaW59yp5ELFf2S96XdCOLeVe91oFI8="; 70 + 71 + types-aiobotocore-appconfig = buildTypesAiobotocorePackage "appconfig" "2.6.0" "sha256-qliKZTlmnPwRdhQs26M0PlCM91Mn7cHCmccCAhDtryU="; 72 + 73 + types-aiobotocore-appconfigdata = buildTypesAiobotocorePackage "appconfigdata" "2.6.0" "sha256-DcLOpKbUl/YOinXXtlo2su0uMh0Ja5cGrpbmKuQVGvw="; 74 + 75 + types-aiobotocore-appfabric = buildTypesAiobotocorePackage "appfabric" "2.6.0" "sha256-yQvNa3iBsoAD4oBVmt0ZNjziBEhzTUE6E6FFLluxTZw="; 76 + 77 + types-aiobotocore-appflow = buildTypesAiobotocorePackage "appflow" "2.6.0" "sha256-ILdWiqipfSnSjdToIq++JIu1WUmv+lMX72Ymo9KGZ9s="; 78 + 79 + types-aiobotocore-appintegrations = buildTypesAiobotocorePackage "appintegrations" "2.6.0" "sha256-ZPNB2PUpeTttagX1rRmgINgahj3cNuBdKQMvdFNK15Y="; 80 + 81 + types-aiobotocore-application-autoscaling = buildTypesAiobotocorePackage "application-autoscaling" "2.6.0" "sha256-p5EgvysfhIHz4ZALV8tJz/7ZkRIu2BIZwENiiVho67w="; 82 + 83 + types-aiobotocore-application-insights = buildTypesAiobotocorePackage "application-insights" "2.6.0" "sha256-PUDqMFJu2BG3WVCS6SYyltrSr64VblVAgrCYQ6FR2sk="; 84 + 85 + types-aiobotocore-applicationcostprofiler = buildTypesAiobotocorePackage "applicationcostprofiler" "2.6.0" "sha256-bGlbP0d38vFHkITC84N43Vt1Nrsf3+ByWSvvteDejBw="; 86 + 87 + types-aiobotocore-appmesh = buildTypesAiobotocorePackage "appmesh" "2.6.0" "sha256-Lcoc/IJ9o1glV8gNNA/t9B3J6K5Qz/50fqPMsF78WVI="; 88 + 89 + types-aiobotocore-apprunner = buildTypesAiobotocorePackage "apprunner" "2.6.0" "sha256-zyesnbNmSrQEsBVQJouP05zxhBTikGZVCR/VFdEkHNE="; 90 + 91 + types-aiobotocore-appstream = buildTypesAiobotocorePackage "appstream" "2.6.0" "sha256-+4LWBHHwL1R4jBGHChSUOq9vFc+k7NmRXvo8ZjDIyXk="; 92 + 93 + types-aiobotocore-appsync = buildTypesAiobotocorePackage "appsync" "2.6.0" "sha256-JFrBy9Ck/Ni4lwHV47fkzt/YI5cX9FvTeaT0tNgzdqs="; 94 + 95 + types-aiobotocore-arc-zonal-shift = buildTypesAiobotocorePackage "arc-zonal-shift" "2.6.0" "sha256-qTW58yyFwbBYyisuL4NkaEXqblJ3vevXI1lHZVX4mZY="; 96 + 97 + types-aiobotocore-athena = buildTypesAiobotocorePackage "athena" "2.6.0" "sha256-xmTKI8q82UohBE+Wh+j1xivsY8wmrcvOlDAlwTpJmxE="; 98 + 99 + types-aiobotocore-auditmanager = buildTypesAiobotocorePackage "auditmanager" "2.6.0" "sha256-a+47CFM19RM3Y+9wLLe8D4II7rKeDQ93dy68jqJqBD4="; 100 + 101 + types-aiobotocore-autoscaling = buildTypesAiobotocorePackage "autoscaling" "2.6.0" "sha256-s0ClcRgYJcd5GZXYWMn2FieNXebdlS9206mLtKCSy44="; 102 + 103 + types-aiobotocore-autoscaling-plans = buildTypesAiobotocorePackage "autoscaling-plans" "2.6.0" "sha256-ZhOokFIm5KHBc5X+Lp19z5N7BudTQHU5KjHGYCrW/aE="; 104 + 105 + types-aiobotocore-backup = buildTypesAiobotocorePackage "backup" "2.6.0" "sha256-rmm10kZXRkmj0TxqARf+57Nz8LapZF7TaH9GGwhIHys="; 106 + 107 + types-aiobotocore-backup-gateway = buildTypesAiobotocorePackage "backup-gateway" "2.6.0" "sha256-/YH0nuyWaEVPlZFxJarGkWOnLcpiIvvf/GCmxMOaybI="; 108 + 109 + types-aiobotocore-backupstorage = buildTypesAiobotocorePackage "backupstorage" "2.6.0" "sha256-OC1xWUT0BjBoelAxHkprhD54kF+YbK30H/42Q3XxdwY="; 110 + 111 + types-aiobotocore-batch = buildTypesAiobotocorePackage "batch" "2.6.0" "sha256-/5yrgR7NbQ6GbkC9SsHaAhDa3juBjyRt705wHTu6Mr8="; 112 + 113 + types-aiobotocore-billingconductor = buildTypesAiobotocorePackage "billingconductor" "2.6.0" "sha256-bDEICyyIUCRxbTWZFXHsj5yncQI+F+geC92vvsrKCxw="; 114 + 115 + types-aiobotocore-braket = buildTypesAiobotocorePackage "braket" "2.6.0" "sha256-aobQZov192xNkN7cwIKLgJnhxltyLpWw1oKk2m1HkV8="; 116 + 117 + types-aiobotocore-budgets = buildTypesAiobotocorePackage "budgets" "2.6.0" "sha256-0tFKq0VomVAD9NRtlQzilQEZHFOZp40vtTKfoBqjpyU="; 118 + 119 + types-aiobotocore-ce = buildTypesAiobotocorePackage "ce" "2.6.0" "sha256-eKYNFMlDt9uUaqsK8PPTpt1wghN3nGgM+idQBVei8eY="; 120 + 121 + types-aiobotocore-chime = buildTypesAiobotocorePackage "chime" "2.6.0" "sha256-5d9LUaSDvYI/Nrsmg4MnM0ucXmyzUQKV4DpX9pZst2s="; 122 + 123 + types-aiobotocore-chime-sdk-identity = buildTypesAiobotocorePackage "chime-sdk-identity" "2.6.0" "sha256-UXVS4iTbkv9/xmL5AFv3xlWtWk5qN/dam/ic4mg3+cI="; 124 + 125 + types-aiobotocore-chime-sdk-media-pipelines = buildTypesAiobotocorePackage "chime-sdk-media-pipelines" "2.6.0" "sha256-+2AioI5B/K5QhDsaBSAFyNW0Fd49EA8ZBVrULd3u7qQ="; 126 + 127 + types-aiobotocore-chime-sdk-meetings = buildTypesAiobotocorePackage "chime-sdk-meetings" "2.6.0" "sha256-oxlFkYpDoi7pidqzDOYdeTazVl/HjnuZmnjMGZa/WIE="; 128 + 129 + types-aiobotocore-chime-sdk-messaging = buildTypesAiobotocorePackage "chime-sdk-messaging" "2.6.0" "sha256-THOQl3ZUILwLRwYlBb7fQDgpYz7wkMyd+tSLEmHHBVY="; 130 + 131 + types-aiobotocore-chime-sdk-voice = buildTypesAiobotocorePackage "chime-sdk-voice" "2.6.0" "sha256-RwMXK2NrM4BDzeg5lcpxfVzxFzrqjZw+xhZnJL81Uqw="; 132 + 133 + types-aiobotocore-cleanrooms = buildTypesAiobotocorePackage "cleanrooms" "2.6.0" "sha256-i2XmS1m6YO7dOaMZKb0WRQB2WpRue+OCLbdR59oWA1Q="; 134 + 135 + types-aiobotocore-cloud9 = buildTypesAiobotocorePackage "cloud9" "2.6.0" "sha256-W3ni8q7n4l8+SP/RyxibCTptextx4Vd8bmiQ3lhgszQ="; 136 + 137 + types-aiobotocore-cloudcontrol = buildTypesAiobotocorePackage "cloudcontrol" "2.6.0" "sha256-qWbYfegOQ6QcEWA/gce9ZiIOBIVeWIj1qjfsksncDxY="; 138 + 139 + types-aiobotocore-clouddirectory = buildTypesAiobotocorePackage "clouddirectory" "2.6.0" "sha256-5TzDHj/t0tqxbRYfnGRP9LNq9pSFj7aidadVB03ZY1k="; 140 + 141 + types-aiobotocore-cloudformation = buildTypesAiobotocorePackage "cloudformation" "2.6.0" "sha256-EyiQY0NCVa3XuRpBH7aXEA7cBx8BzyRP917f/Ogx0mw="; 142 + 143 + types-aiobotocore-cloudfront = buildTypesAiobotocorePackage "cloudfront" "2.6.0" "sha256-f9nqoXlg7sgY2QCkE1/+Q72N/8Besrl6gncmU+vNt/I="; 144 + 145 + types-aiobotocore-cloudhsm = buildTypesAiobotocorePackage "cloudhsm" "2.6.0" "sha256-a3QRjQhW+cRJykNjhhJREGwuZxR0b+WxgRuS2yuGcTQ="; 146 + 147 + types-aiobotocore-cloudhsmv2 = buildTypesAiobotocorePackage "cloudhsmv2" "2.6.0" "sha256-FyktFlTQAbS6YnoXljvtn6CabJHGLkRv1jCgb9dbz+s="; 148 + 149 + types-aiobotocore-cloudsearch = buildTypesAiobotocorePackage "cloudsearch" "2.6.0" "sha256-eKLM+GYjbm3cweMtF/XI6k+P8t9gaJeRCeMHQbc832g="; 150 + 151 + types-aiobotocore-cloudsearchdomain = buildTypesAiobotocorePackage "cloudsearchdomain" "2.6.0" "sha256-wn03HlgBaZIAkw8gxPehSKpcfQGOhYp0U1CF/84M/lg="; 152 + 153 + types-aiobotocore-cloudtrail = buildTypesAiobotocorePackage "cloudtrail" "2.6.0" "sha256-/vpOE8tU7SsjHmn/YyVfku05ZGBZIiVuFsG6aK47K28="; 154 + 155 + types-aiobotocore-cloudtrail-data = buildTypesAiobotocorePackage "cloudtrail-data" "2.6.0" "sha256-8W7TrB1EXp5JeBQ9xqkqFhf+Frflpd5bfVxpqju2ZPM="; 156 + 157 + types-aiobotocore-cloudwatch = buildTypesAiobotocorePackage "cloudwatch" "2.6.0" "sha256-ntQkDjM3I3wuMH5jsifODEwRna2ctRW1M9bzyEjIF7w="; 158 + 159 + types-aiobotocore-codeartifact = buildTypesAiobotocorePackage "codeartifact" "2.6.0" "sha256-NuMqaomry4ezNNRKBLOJ0xNwGUO2Prl4nf/5O38oyqI="; 160 + 161 + types-aiobotocore-codebuild = buildTypesAiobotocorePackage "codebuild" "2.6.0" "sha256-dYe3uLk0ssQPQPEo+3glh+ic6recgV5WPIN09lLuuA4="; 162 + 163 + types-aiobotocore-codecatalyst = buildTypesAiobotocorePackage "codecatalyst" "2.6.0" "sha256-7MKRVJ4fgberRmkHWHfvrfzU2+BYhMZxgb2ge7NAQp4="; 164 + 165 + types-aiobotocore-codecommit = buildTypesAiobotocorePackage "codecommit" "2.6.0" "sha256-7StmPVxVNfFpqQmjyM4cn9NBrAsuUjxRkP0WgGCnuso="; 166 + 167 + types-aiobotocore-codedeploy = buildTypesAiobotocorePackage "codedeploy" "2.6.0" "sha256-4TUcqf3kuRqsMjhfrUTX3/aOSl43NtwmbSgM6KtjAlk="; 168 + 169 + types-aiobotocore-codeguru-reviewer = buildTypesAiobotocorePackage "codeguru-reviewer" "2.6.0" "sha256-qD42WySh9NpQBOveTRGP3hIp8zD1Y1DzSiM7kbbfR88="; 170 + 171 + types-aiobotocore-codeguru-security = buildTypesAiobotocorePackage "codeguru-security" "2.6.0" "sha256-1qgsFoogu8MnWoCeKnqy4KIY7UdMeUPnaS1zVSVl2Mg="; 172 + 173 + types-aiobotocore-codeguruprofiler = buildTypesAiobotocorePackage "codeguruprofiler" "2.6.0" "sha256-7Nbb+l7y5ccrVGymZ46nKwnGoa5nThrIOZ1AG0ykPEw="; 174 + 175 + types-aiobotocore-codepipeline = buildTypesAiobotocorePackage "codepipeline" "2.6.0" "sha256-cIvM4g/CldgLuN10a3lNhISz08gT6VxZHMS5xo+B2IA="; 176 + 177 + types-aiobotocore-codestar = buildTypesAiobotocorePackage "codestar" "2.6.0" "sha256-6b3QfRecmprhRU+loWafrcL1mWNLFmZXZOAhUMkpGqU="; 178 + 179 + types-aiobotocore-codestar-connections = buildTypesAiobotocorePackage "codestar-connections" "2.6.0" "sha256-D/icEGVsuYSU7hCw2VEojLTkdaBcK6SoEZqpvD/NKV0="; 180 + 181 + types-aiobotocore-codestar-notifications = buildTypesAiobotocorePackage "codestar-notifications" "2.6.0" "sha256-7vWHwrG7Z80Zb3ncGBqN4ItKAVWLR0XHITJxMmE8y8Y="; 182 + 183 + types-aiobotocore-cognito-identity = buildTypesAiobotocorePackage "cognito-identity" "2.6.0" "sha256-C1JRefgyuiKDOJMhShyDPDjfKp5S5OMCaHcnORLxnvY="; 184 + 185 + types-aiobotocore-cognito-idp = buildTypesAiobotocorePackage "cognito-idp" "2.6.0" "sha256-ks8MmuhrmdTS509vgxZ0raZqISMPaAItEjf93ppWhrU="; 186 + 187 + types-aiobotocore-cognito-sync = buildTypesAiobotocorePackage "cognito-sync" "2.6.0" "sha256-pOLa8tDqPexDigPbRqTjnr7/ricz92/Ml79AyUXvXBg="; 188 + 189 + types-aiobotocore-comprehend = buildTypesAiobotocorePackage "comprehend" "2.6.0" "sha256-qXIwjiNksQbQiTtwaKWNHaUCras/moRuFXN3sOEPYMc="; 190 + 191 + types-aiobotocore-comprehendmedical = buildTypesAiobotocorePackage "comprehendmedical" "2.6.0" "sha256-C98s7dkFRgj8m4M+MmjvCWwrdohkLJafgo9j2ACQ2l4="; 192 + 193 + types-aiobotocore-compute-optimizer = buildTypesAiobotocorePackage "compute-optimizer" "2.6.0" "sha256-4MRGtyFWceAuspTW6Xqwjf2ta0VC1SIoK/U80QZw7UA="; 194 + 195 + types-aiobotocore-config = buildTypesAiobotocorePackage "config" "2.6.0" "sha256-qW+R5X/fu784kjARjISaNxwzIJn74SXfUaPEuGqsM1M="; 196 + 197 + types-aiobotocore-connect = buildTypesAiobotocorePackage "connect" "2.6.0" "sha256-d+7VqW5H0hyINQVXoy6djyFmkGzlhLnEpzURuPQLyBc="; 198 + 199 + types-aiobotocore-connect-contact-lens = buildTypesAiobotocorePackage "connect-contact-lens" "2.6.0" "sha256-3d2WJQpohaiwdsKOS2u5kNhHVsgELMxgjunHAk6v7Y8="; 200 + 201 + types-aiobotocore-connectcampaigns = buildTypesAiobotocorePackage "connectcampaigns" "2.6.0" "sha256-lsDs0yxFf4ForZ2bU719LFCDHzR9lOE211XuYGYKZCw="; 202 + 203 + types-aiobotocore-connectcases = buildTypesAiobotocorePackage "connectcases" "2.6.0" "sha256-/MRl46K5h5mtboGhWDop0psxPyxhm3tKhzvMpr91d/w="; 204 + 205 + types-aiobotocore-connectparticipant = buildTypesAiobotocorePackage "connectparticipant" "2.6.0" "sha256-3E+8scTPCcNm8RDoxGWSm/u6drT12aiFqf3LbxWTy8w="; 206 + 207 + types-aiobotocore-controltower = buildTypesAiobotocorePackage "controltower" "2.6.0" "sha256-Df25Lah8FBdCrbWMC+Y9ayQCO3ijG8cMdypA2+sE3oY="; 208 + 209 + types-aiobotocore-cur = buildTypesAiobotocorePackage "cur" "2.6.0" "sha256-i+n53Eejdz26WGsHBmLR3V0ZxOBHPtTTzoxH0mmKPig="; 210 + 211 + types-aiobotocore-customer-profiles = buildTypesAiobotocorePackage "customer-profiles" "2.6.0" "sha256-i1mv2M3bboOF3+iIKYhp4raYb7mHiQTirlWsttB/dXY="; 212 + 213 + types-aiobotocore-databrew = buildTypesAiobotocorePackage "databrew" "2.6.0" "sha256-WMVPGbQkdbKc2T+gR9P3oWUxl5VSVf4IdcLeuW9SNUo="; 214 + 215 + types-aiobotocore-dataexchange = buildTypesAiobotocorePackage "dataexchange" "2.6.0" "sha256-okcgm0Lx5s2AM2mprVwNjeI1TTmlR73FgjWbYa9uRdE="; 216 + 217 + types-aiobotocore-datapipeline = buildTypesAiobotocorePackage "datapipeline" "2.6.0" "sha256-k0tYIWqPEnETISThasPHa9AaWdAs0p+hfrUuCI7VTJk="; 218 + 219 + types-aiobotocore-datasync = buildTypesAiobotocorePackage "datasync" "2.6.0" "sha256-C138viPl57+Z79k1C0c4IjgdpMd4PhO352fUs6/YnE0="; 220 + 221 + types-aiobotocore-dax = buildTypesAiobotocorePackage "dax" "2.6.0" "sha256-1BtV4vajDTlmNhX4oh1h81+1MsIe63gxnkd1oWn0yeI="; 222 + 223 + types-aiobotocore-detective = buildTypesAiobotocorePackage "detective" "2.6.0" "sha256-UP8rTuCwNq6Eu5gYrMj5c+JaNy9grOOL9RRi/QsDvzE="; 224 + 225 + types-aiobotocore-devicefarm = buildTypesAiobotocorePackage "devicefarm" "2.6.0" "sha256-Mc4Kl4dZyn9y+9V44QilacOHN9+E1M79uNLATsoH2Ks="; 226 + 227 + types-aiobotocore-devops-guru = buildTypesAiobotocorePackage "devops-guru" "2.6.0" "sha256-pPn7O3oK75zRmOFMQmyzmRcjpRTswrVhdbkcqaI5Sj8="; 228 + 229 + types-aiobotocore-directconnect = buildTypesAiobotocorePackage "directconnect" "2.6.0" "sha256-LwbqLf3BEwW/+f6vsddXt+FiyGkRKIPXfaqW5rtDrig="; 230 + 231 + types-aiobotocore-discovery = buildTypesAiobotocorePackage "discovery" "2.6.0" "sha256-mBruXgMAELLGyEg7ON8PFesERMf5og8As58U9pvIKRc="; 232 + 233 + types-aiobotocore-dlm = buildTypesAiobotocorePackage "dlm" "2.6.0" "sha256-JLOVu9OlJgrfTBlmzVNN5saYO8AFk8N54hRzDAjq7WI="; 234 + 235 + types-aiobotocore-dms = buildTypesAiobotocorePackage "dms" "2.6.0" "sha256-cWGwdGBTgEag5SeRDLvAJtCS1dAxtt5R0uanPI6RjkY="; 236 + 237 + types-aiobotocore-docdb = buildTypesAiobotocorePackage "docdb" "2.6.0" "sha256-yYm/H31gRIDV+r2H+8cTHkc5h40aFFUQ7zlX1wyLPAI="; 238 + 239 + types-aiobotocore-docdb-elastic = buildTypesAiobotocorePackage "docdb-elastic" "2.6.0" "sha256-ro0xv2HHzTXA6tRNnr3eQjCj5iaqc1wOcsKny8j/hoQ="; 240 + 241 + types-aiobotocore-drs = buildTypesAiobotocorePackage "drs" "2.6.0" "sha256-4CeNeftLpPSZYqw09LcPRC+8yVp+84azRHQ8O0JFOOo="; 242 + 243 + types-aiobotocore-ds = buildTypesAiobotocorePackage "ds" "2.6.0" "sha256-HZEA8fivN05Puxycyl+2z4kIJMbGtF0J7ohLOwx+IzM="; 244 + 245 + types-aiobotocore-dynamodb = buildTypesAiobotocorePackage "dynamodb" "2.6.0" "sha256-dFo/YsEQg7TXB5NENmFOv37R3B2GoN0TlIiULWEQr9I="; 246 + 247 + types-aiobotocore-dynamodbstreams = buildTypesAiobotocorePackage "dynamodbstreams" "2.6.0" "sha256-8wsE774l7M8Qb3UiaxkAdN6sdnXs5oS4cFhncW0joBI="; 248 + 249 + types-aiobotocore-ebs = buildTypesAiobotocorePackage "ebs" "2.6.0" "sha256-95lUlfOjLVgHufSv3UvaKB1K0F2N0cvtCcKh96VBtqg="; 250 + 251 + types-aiobotocore-ec2 = buildTypesAiobotocorePackage "ec2" "2.6.0" "sha256-hSuwPcQEk9Qgkc/JtcZp2vqLXnMQN9gtzjkuC1Bv1C4="; 252 + 253 + types-aiobotocore-ec2-instance-connect = buildTypesAiobotocorePackage "ec2-instance-connect" "2.6.0" "sha256-0Lwxob43TzJHNcriUEa3BAZE64iqS9Js4TtfL20YRj0="; 254 + 255 + types-aiobotocore-ecr = buildTypesAiobotocorePackage "ecr" "2.6.0" "sha256-bMPp7QPa2f8GCRmX3y78XvZTUyYNfYxXDKj5lckBBvE="; 256 + 257 + types-aiobotocore-ecr-public = buildTypesAiobotocorePackage "ecr-public" "2.6.0" "sha256-O2RieTv4vyZ6/mR8BRltfbGcPUjAyIIqriskSlmNcb4="; 258 + 259 + types-aiobotocore-ecs = buildTypesAiobotocorePackage "ecs" "2.6.0" "sha256-C660Ync/6dV8c9i+N7bgV0TYaPScrJ40KPdG3LItGGs="; 260 + 261 + types-aiobotocore-efs = buildTypesAiobotocorePackage "efs" "2.6.0" "sha256-jhIpP0cJEv2SqvmBJtxNVoWF4AOWci2sPj04dN3N+bo="; 262 + 263 + types-aiobotocore-eks = buildTypesAiobotocorePackage "eks" "2.6.0" "sha256-MXMbA1QAyRMhTqihwKztK3EoRp1iesCvPEz30Xc/in8="; 264 + 265 + types-aiobotocore-elastic-inference = buildTypesAiobotocorePackage "elastic-inference" "2.6.0" "sha256-xjMVOk0fzyvDoSNb+kxVQT9emfvIG/6Ws3h3MfCCTOY="; 266 + 267 + types-aiobotocore-elasticache = buildTypesAiobotocorePackage "elasticache" "2.6.0" "sha256-7iUYuPOerdp1+fxI/KdC4sEWDOTJQAgYYheEmSvjBFo="; 268 + 269 + types-aiobotocore-elasticbeanstalk = buildTypesAiobotocorePackage "elasticbeanstalk" "2.6.0" "sha256-yCF9EHyTsf1hmoeSGrNiM2Dd8gtGlcX79zqF25btN04="; 270 + 271 + types-aiobotocore-elastictranscoder = buildTypesAiobotocorePackage "elastictranscoder" "2.6.0" "sha256-vRVH67/SbkncE4q3gssGce4NtTYgFM56RLzDKyvBCpc="; 272 + 273 + types-aiobotocore-elb = buildTypesAiobotocorePackage "elb" "2.6.0" "sha256-+mFIAOecS21QFsnB+V1EFyGLv6uW+oMzkRi051HvPGA="; 274 + 275 + types-aiobotocore-elbv2 = buildTypesAiobotocorePackage "elbv2" "2.6.0" "sha256-OIWzkp7AC2bK55bl3WvL2Zk7M0WRPc8jVHekPAGDtyw="; 276 + 277 + types-aiobotocore-emr = buildTypesAiobotocorePackage "emr" "2.6.0" "sha256-TWCgT2xBi3UajaF6L+m61Q27YV8RCm+e/jRVnZKjwrI="; 278 + 279 + types-aiobotocore-emr-containers = buildTypesAiobotocorePackage "emr-containers" "2.6.0" "sha256-pBr9zVqEbP0na385scKW28d0qIB+7HQdYC5QTdhxHNA="; 280 + 281 + types-aiobotocore-emr-serverless = buildTypesAiobotocorePackage "emr-serverless" "2.6.0" "sha256-mdpuehCY0ki+sZSlNS0kIwijZphoyQixNWY4WKEcrMs="; 282 + 283 + types-aiobotocore-entityresolution = buildTypesAiobotocorePackage "entityresolution" "2.6.0" "sha256-lFbcxmw7Le/rVVL70cOY/vEUShSRnsOdul+eI1jzX7Y="; 284 + 285 + types-aiobotocore-es = buildTypesAiobotocorePackage "es" "2.6.0" "sha256-A/1kM0X4bKrPIXBpir9FuEkuYmUb/K06gfut6faGN0A="; 286 + 287 + types-aiobotocore-events = buildTypesAiobotocorePackage "events" "2.6.0" "sha256-X0r0VZ/ZWYrn2NdE5dJrcS74OyWIvWMDJGSNheIOm0A="; 288 + 289 + types-aiobotocore-evidently = buildTypesAiobotocorePackage "evidently" "2.6.0" "sha256-ec9XPmiGjhH+MsW81JtH13KACasiWqtmxOC/O8ewbgE="; 290 + 291 + types-aiobotocore-finspace = buildTypesAiobotocorePackage "finspace" "2.6.0" "sha256-fPG/13VJzvdfoADYZXTZ2ssdJrKQ/MEic6rhsNUE4tU="; 292 + 293 + types-aiobotocore-finspace-data = buildTypesAiobotocorePackage "finspace-data" "2.6.0" "sha256-2mAHrKw7Hur/nrVQpuRwGae5CumbjbQb4V9Z6NlsSmo="; 294 + 295 + types-aiobotocore-firehose = buildTypesAiobotocorePackage "firehose" "2.6.0" "sha256-viWUrt2F0O1jVhkxK5G776A4r7d4jJJVI/5UsUS+cao="; 296 + 297 + types-aiobotocore-fis = buildTypesAiobotocorePackage "fis" "2.6.0" "sha256-4T/EcdB+5TV8PnX1Z9c8Ato19kznO3yQPZohuWD1+J8="; 298 + 299 + types-aiobotocore-fms = buildTypesAiobotocorePackage "fms" "2.6.0" "sha256-VIGEXyDyUEWshdYFUJ3VmCS1z/ZBOKq2PYCosalPZAw="; 300 + 301 + types-aiobotocore-forecast = buildTypesAiobotocorePackage "forecast" "2.6.0" "sha256-rMjrKtR8BWtAYoyBY52o/5wbZCHqX1aFMRsVCunZTeo="; 302 + 303 + types-aiobotocore-forecastquery = buildTypesAiobotocorePackage "forecastquery" "2.6.0" "sha256-rh53/1tmYyADrkUtQjrwrcEe78ji6II0yYnMQO38AOU="; 304 + 305 + types-aiobotocore-frauddetector = buildTypesAiobotocorePackage "frauddetector" "2.6.0" "sha256-ICRkb+GIWginbc2LvsJTzBaEXDlwg+JOqWQwNRzu+CI="; 306 + 307 + types-aiobotocore-fsx = buildTypesAiobotocorePackage "fsx" "2.6.0" "sha256-vZiK+Kat3RKN/OcKny5qLF+pYljoVlJGG9Kdlb75GWk="; 308 + 309 + types-aiobotocore-gamelift = buildTypesAiobotocorePackage "gamelift" "2.6.0" "sha256-9qk0jvEAU6vh++k18ccjrZNLnYlOqiAGuVvBGS5QetQ="; 310 + 311 + types-aiobotocore-gamesparks = buildTypesAiobotocorePackage "gamesparks" "2.6.0" "sha256-9iV7bpGMnzz9TH+g1YpPjbKBSKY3rcL/OJvMOzwLC1M="; 312 + 313 + types-aiobotocore-glacier = buildTypesAiobotocorePackage "glacier" "2.6.0" "sha256-shUgv/KntAP0kuD8pJFLEAp/aIukEsLhte6C5odtNJs="; 314 + 315 + types-aiobotocore-globalaccelerator = buildTypesAiobotocorePackage "globalaccelerator" "2.6.0" "sha256-U/74XOX/pXh4JJ4n6Fu6quL6gQwz+zt9bOWj/QYOS+8="; 316 + 317 + types-aiobotocore-glue = buildTypesAiobotocorePackage "glue" "2.6.0" "sha256-K2asnioD1r9BJCX2PaNaN+fKDyA+oQhvdM0h0LgxbEY="; 318 + 319 + types-aiobotocore-grafana = buildTypesAiobotocorePackage "grafana" "2.6.0" "sha256-acNr8U/E2Eq4wp68Td0k8xdORhT6ZOJBOi0enBnaacE="; 320 + 321 + types-aiobotocore-greengrass = buildTypesAiobotocorePackage "greengrass" "2.6.0" "sha256-9mqnIWlLUoz28qp8AH8LiNdDgcJ04P0Z+jxNb/91jUg="; 322 + 323 + types-aiobotocore-greengrassv2 = buildTypesAiobotocorePackage "greengrassv2" "2.6.0" "sha256-+G6nPOY2Suxa8LPTG8SHOZfwaIJQIyVGTRcsAQYXZzY="; 324 + 325 + types-aiobotocore-groundstation = buildTypesAiobotocorePackage "groundstation" "2.6.0" "sha256-VGGDcARvtSeukjgVB9jwSamIrlrNCF+0pNszN6VkMC0="; 326 + 327 + types-aiobotocore-guardduty = buildTypesAiobotocorePackage "guardduty" "2.6.0" "sha256-3bScTMTc7PMrHvZpfPYENj55w2JjnK/pVuNLcxCjw5Q="; 328 + 329 + types-aiobotocore-health = buildTypesAiobotocorePackage "health" "2.6.0" "sha256-WBxZlnWrZ6b0MIEomvgUDqiKNe9KIIgOrNrRhRw07EA="; 330 + 331 + types-aiobotocore-healthlake = buildTypesAiobotocorePackage "healthlake" "2.6.0" "sha256-8ofimJ4eTxq8yQjCc23FQ2OktMCNwlIBCn+eC+HLqlc="; 332 + 333 + types-aiobotocore-honeycode = buildTypesAiobotocorePackage "honeycode" "2.6.0" "sha256-dCjt22yHlShPdG6Jipy3m4Rx3G4OLPiuUi1gyubcQ/g="; 334 + 335 + types-aiobotocore-iam = buildTypesAiobotocorePackage "iam" "2.6.0" "sha256-NPvYTwvZY5MjfdIlTMRZEQ1S9IvxvQjoi5K2LOlSrMM="; 336 + 337 + types-aiobotocore-identitystore = buildTypesAiobotocorePackage "identitystore" "2.6.0" "sha256-u4d+/kVZ+qtLyueNSGy6a2VoB0jIYdKZqvCQQfarbx4="; 338 + 339 + types-aiobotocore-imagebuilder = buildTypesAiobotocorePackage "imagebuilder" "2.6.0" "sha256-uhkFIVr68n0ShrpZY9qyghd0XgMb0ZT6fF9WdjtF7g0="; 340 + 341 + types-aiobotocore-importexport = buildTypesAiobotocorePackage "importexport" "2.6.0" "sha256-m0fUuupB8Eb9pJQnuir4THb4TdDstKcxHQRgz8Ce2Zg="; 342 + 343 + types-aiobotocore-inspector = buildTypesAiobotocorePackage "inspector" "2.6.0" "sha256-dJQnb6AwtmScEIun0QB9CiiPkbdKti9+mc5LN3vf7e0="; 344 + 345 + types-aiobotocore-inspector2 = buildTypesAiobotocorePackage "inspector2" "2.6.0" "sha256-kAhdyymMdbrPoCFzKiVCFzBlfpmz4aGlZ1Ilkrc8EiQ="; 346 + 347 + types-aiobotocore-internetmonitor = buildTypesAiobotocorePackage "internetmonitor" "2.6.0" "sha256-3oJbkuU013LR7DUXvr8y0nbYh3caAF1c4GtgM1CizdU="; 348 + 349 + types-aiobotocore-iot = buildTypesAiobotocorePackage "iot" "2.6.0" "sha256-Rt6dsE/9aR5AZC47G3RayV56VVobDWEah64cNHsaYII="; 350 + 351 + types-aiobotocore-iot-data = buildTypesAiobotocorePackage "iot-data" "2.6.0" "sha256-KpgEjoEsCSiC6aKyHy64it0k87XYICbxMhUFYUjCBuo="; 352 + 353 + types-aiobotocore-iot-jobs-data = buildTypesAiobotocorePackage "iot-jobs-data" "2.6.0" "sha256-IQRarMn1ZAh+kUG1I4Cyt/6WrIoby07g3qcSzpWUWWM="; 354 + 355 + types-aiobotocore-iot-roborunner = buildTypesAiobotocorePackage "iot-roborunner" "2.6.0" "sha256-BFSV0lfXriD43UFXjdomHIQO60TjrYWmL6+htf9Z3mE="; 356 + 357 + types-aiobotocore-iot1click-devices = buildTypesAiobotocorePackage "iot1click-devices" "2.6.0" "sha256-MRRil8KuR88NvjAOQHQSftplzk7+sdAJBb1Koxj1j8o="; 358 + 359 + types-aiobotocore-iot1click-projects = buildTypesAiobotocorePackage "iot1click-projects" "2.6.0" "sha256-6YRdsbNw685KvSLCPP6cpCVA5zqht9gF/SthHHtjxfI="; 360 + 361 + types-aiobotocore-iotanalytics = buildTypesAiobotocorePackage "iotanalytics" "2.6.0" "sha256-uhxX742flhdDM7zoYm6yggc41NW7glGPijiql4XKJa4="; 362 + 363 + types-aiobotocore-iotdeviceadvisor = buildTypesAiobotocorePackage "iotdeviceadvisor" "2.6.0" "sha256-jrOVxsJHgpEvyLhreMrzttu3yQ4FXm4+MVDlNNIKWVU="; 364 + 365 + types-aiobotocore-iotevents = buildTypesAiobotocorePackage "iotevents" "2.6.0" "sha256-M3wUbFFGsYQesy7ASen+b6yokGkjXY0P5wpGexO2CGg="; 366 + 367 + types-aiobotocore-iotevents-data = buildTypesAiobotocorePackage "iotevents-data" "2.6.0" "sha256-ESm7ZCtEvHo/r9LXnBaIAVAb4bQkGjIlmUNlo/JuzjE="; 368 + 369 + types-aiobotocore-iotfleethub = buildTypesAiobotocorePackage "iotfleethub" "2.6.0" "sha256-0NMp62HDGZ0FHVtyHOvgfMUaedqZG9bY46d2OrpGK7E="; 370 + 371 + types-aiobotocore-iotfleetwise = buildTypesAiobotocorePackage "iotfleetwise" "2.6.0" "sha256-jbLoJOgFRNSPaFv/diM8L0mTGIB2IjAzHqx/QH7lriQ="; 372 + 373 + types-aiobotocore-iotsecuretunneling = buildTypesAiobotocorePackage "iotsecuretunneling" "2.6.0" "sha256-8zvG95bDvJWNRmw9sCdBfPxQPdb4TNAzqMcth+hliLI="; 374 + 375 + types-aiobotocore-iotsitewise = buildTypesAiobotocorePackage "iotsitewise" "2.6.0" "sha256-1i4Z4CE9PG7JByR9RpPazu7RmPIjNeDecnz5LH2ls2A="; 376 + 377 + types-aiobotocore-iotthingsgraph = buildTypesAiobotocorePackage "iotthingsgraph" "2.6.0" "sha256-6161RDBwnvqvBtJWs5bPieI6AdwKFCmiT6ixKRE9GuM="; 378 + 379 + types-aiobotocore-iottwinmaker = buildTypesAiobotocorePackage "iottwinmaker" "2.6.0" "sha256-/h85AoG+poq4t0EvpXdofWfbaEBD6CiCxhdaGKLi4C0="; 380 + 381 + types-aiobotocore-iotwireless = buildTypesAiobotocorePackage "iotwireless" "2.6.0" "sha256-kuOboqDTHpdSW6vD/JGOdLL2U639wM+2V2KaSm1j0xo="; 382 + 383 + types-aiobotocore-ivs = buildTypesAiobotocorePackage "ivs" "2.6.0" "sha256-CiMKW2suhsU2dZsLQkL3hK2qKRJ56FS4Ix7Dt347bMA="; 384 + 385 + types-aiobotocore-ivs-realtime = buildTypesAiobotocorePackage "ivs-realtime" "2.6.0" "sha256-y4RRQdjaJS9GLW7HUNC9f3kWCOAGijlisrlB0MYQ1As="; 386 + 387 + types-aiobotocore-ivschat = buildTypesAiobotocorePackage "ivschat" "2.6.0" "sha256-5ANdk601wY6vtjYbe8CxtY9lK4Fe6wbl5uB6Mq6uqII="; 388 + 389 + types-aiobotocore-kafka = buildTypesAiobotocorePackage "kafka" "2.6.0" "sha256-cvmNob4pGa18W/2uh16zFJ58f0MHRDL2LwOKrsO16uI="; 390 + 391 + types-aiobotocore-kafkaconnect = buildTypesAiobotocorePackage "kafkaconnect" "2.6.0" "sha256-pOk51+FrlKDNPPDaa1mf3HjpCqlUskeRYITkFp91l6M="; 392 + 393 + types-aiobotocore-kendra = buildTypesAiobotocorePackage "kendra" "2.6.0" "sha256-1WeJI++z4QiF0bZ4FyNgoNWY6X62ZCyq7PGNM9urFn4="; 394 + 395 + types-aiobotocore-kendra-ranking = buildTypesAiobotocorePackage "kendra-ranking" "2.6.0" "sha256-uaeHdW8lew6jq2KQApkY76eWRkYVLffN0h71icP9viE="; 396 + 397 + types-aiobotocore-keyspaces = buildTypesAiobotocorePackage "keyspaces" "2.6.0" "sha256-vbWWkLbVnzfWHp3Yy3S6mh0+tHrkA/5Krw4GVSdILls="; 398 + 399 + types-aiobotocore-kinesis = buildTypesAiobotocorePackage "kinesis" "2.6.0" "sha256-n5u7dzAnZ7YRGIC2qyynlsALR7tONulc0ZmimW+xotk="; 400 + 401 + types-aiobotocore-kinesis-video-archived-media = buildTypesAiobotocorePackage "kinesis-video-archived-media" "2.6.0" "sha256-mjY7GbQ20pzL38tQMoluJISpaxk/IreluvmX7XsLfTg="; 402 + 403 + types-aiobotocore-kinesis-video-media = buildTypesAiobotocorePackage "kinesis-video-media" "2.6.0" "sha256-8kK4JurIaid4k0BkpoZkaosn7cOIyMTt0RXnoJZUtSc="; 404 + 405 + types-aiobotocore-kinesis-video-signaling = buildTypesAiobotocorePackage "kinesis-video-signaling" "2.6.0" "sha256-nUOb5NwCsz/7Z0bUMUsxysn2bgNi+yTvyGGCkwzCU1o="; 406 + 407 + types-aiobotocore-kinesis-video-webrtc-storage = buildTypesAiobotocorePackage "kinesis-video-webrtc-storage" "2.6.0" "sha256-Tw+ozecMKAw56x47Wqq3wwwcmDT+5LvoUDAZSX0z2I4="; 408 + 409 + types-aiobotocore-kinesisanalytics = buildTypesAiobotocorePackage "kinesisanalytics" "2.6.0" "sha256-QY5tN7QVP2WC7P/se6wNrnLp3sJVIr/rTEs9ePpADPE="; 410 + 411 + types-aiobotocore-kinesisanalyticsv2 = buildTypesAiobotocorePackage "kinesisanalyticsv2" "2.6.0" "sha256-aedmxGOuU70uX/+bQL8coUWBpk9IQHAL7VqusH8zPbs="; 412 + 413 + types-aiobotocore-kinesisvideo = buildTypesAiobotocorePackage "kinesisvideo" "2.6.0" "sha256-wyT6YahL3sRGHQcBTAyLd7l75wVWRp2waS+Q46Me/ok="; 414 + 415 + types-aiobotocore-kms = buildTypesAiobotocorePackage "kms" "2.6.0" "sha256-mY26ICYSENAruEn4986zxi5R9ong4nyuRAHgMZDliqo="; 416 + 417 + types-aiobotocore-lakeformation = buildTypesAiobotocorePackage "lakeformation" "2.6.0" "sha256-CR3Uopf6izBTlR16yIA3CUikWrS3OzkFZFpbJNDhBVs="; 418 + 419 + types-aiobotocore-lambda = buildTypesAiobotocorePackage "lambda" "2.6.0" "sha256-pkZMQu5himEPO7z/AF7INb7H7jjmkyQV1ql2epF4yYA="; 420 + 421 + types-aiobotocore-lex-models = buildTypesAiobotocorePackage "lex-models" "2.6.0" "sha256-sIQ85LzkQgMvVfAKEc5HxIXx85Tckx4HVXcex2hxZ6I="; 422 + 423 + types-aiobotocore-lex-runtime = buildTypesAiobotocorePackage "lex-runtime" "2.6.0" "sha256-IZvLF0Wg7od/LqC2bcCxtvNun0n9JViuXE/CQMoBdMc="; 424 + 425 + types-aiobotocore-lexv2-models = buildTypesAiobotocorePackage "lexv2-models" "2.6.0" "sha256-9eebhFQqnsParfZ1poJJX/ehx1lNHIynFwXEzAo10JM="; 426 + 427 + types-aiobotocore-lexv2-runtime = buildTypesAiobotocorePackage "lexv2-runtime" "2.6.0" "sha256-ot+oM2a+CA/92d+tY54tqdOlsZWReknv+Pt3Aw8V1GU="; 428 + 429 + types-aiobotocore-license-manager = buildTypesAiobotocorePackage "license-manager" "2.6.0" "sha256-iNlzgcjg3VrIZJEi2f+7msFqrfWsUS24k7OERB28uRo="; 430 + 431 + types-aiobotocore-license-manager-linux-subscriptions = buildTypesAiobotocorePackage "license-manager-linux-subscriptions" "2.6.0" "sha256-1exWgnbG5ikd1pHWClPGq3Luku5qyTtG6pwvqL/zWdk="; 432 + 433 + types-aiobotocore-license-manager-user-subscriptions = buildTypesAiobotocorePackage "license-manager-user-subscriptions" "2.6.0" "sha256-0fLwCr5eDRxcGZdw3sqExh8awX1qu5XmEYMD63xhD3w="; 434 + 435 + types-aiobotocore-lightsail = buildTypesAiobotocorePackage "lightsail" "2.6.0" "sha256-eiibXP8S+xvn+PTX8cd3WiN6yL2JmjK9EG9BryexFjY="; 436 + 437 + types-aiobotocore-location = buildTypesAiobotocorePackage "location" "2.6.0" "sha256-3zQZyDgaMuj5SAQ7Nc+XzF5dUi1E9bAjv9mIscJxfqM="; 438 + 439 + types-aiobotocore-logs = buildTypesAiobotocorePackage "logs" "2.6.0" "sha256-qyA1uCrAFGZHMlfL8Dou1YkM6rb9xwcrDQmteSqOadM="; 440 + 441 + types-aiobotocore-lookoutequipment = buildTypesAiobotocorePackage "lookoutequipment" "2.6.0" "sha256-ilPodAPj7J6xVCPEjsBQcQ4I5dNMEM2/hM1j8PJMUto="; 442 + 443 + types-aiobotocore-lookoutmetrics = buildTypesAiobotocorePackage "lookoutmetrics" "2.6.0" "sha256-m/13nELWqdPNkZXmA3FhArlOKhB1CcbTaAsI9Iqzrik="; 444 + 445 + types-aiobotocore-lookoutvision = buildTypesAiobotocorePackage "lookoutvision" "2.6.0" "sha256-gW+GFoQhI1Mj412Gh3MXfoSMKpNscUB4AqC9WMF4ACI="; 446 + 447 + types-aiobotocore-m2 = buildTypesAiobotocorePackage "m2" "2.6.0" "sha256-DoFG4FxvJFnN54G5F2LZY5M0aYlCU9H5wwnAsiHaRmc="; 448 + 449 + types-aiobotocore-machinelearning = buildTypesAiobotocorePackage "machinelearning" "2.6.0" "sha256-VZajCqSzofQLUBrXbMzdaPmbIDNp5YuUUk1wberVcFs="; 450 + 451 + types-aiobotocore-macie = buildTypesAiobotocorePackage "macie" "2.6.0" "sha256-gbl7jEgjk4twoxGM+WRg4MZ/nkGg7btiPOsPptR7yfw="; 452 + 453 + types-aiobotocore-macie2 = buildTypesAiobotocorePackage "macie2" "2.6.0" "sha256-IX2KY/guFLJ6jL4gRdTS6cQbNuFJuz8xa4QzqZ8j5h8="; 454 + 455 + types-aiobotocore-managedblockchain = buildTypesAiobotocorePackage "managedblockchain" "2.6.0" "sha256-k/J7hBJDfGXMFR9jn7Tiec8bClrXIz6XyLMqLJad6oU="; 456 + 457 + types-aiobotocore-managedblockchain-query = buildTypesAiobotocorePackage "managedblockchain-query" "2.6.0" "sha256-swmAlpVrP1eSvJatWaJL6QDfgZ0xzBttrpHt1aNULUk="; 458 + 459 + types-aiobotocore-marketplace-catalog = buildTypesAiobotocorePackage "marketplace-catalog" "2.6.0" "sha256-9yD3FIFrRDMAckbztjrKeUEyXCUOggF5UfsPe5hcQ1Q="; 460 + 461 + types-aiobotocore-marketplace-entitlement = buildTypesAiobotocorePackage "marketplace-entitlement" "2.6.0" "sha256-Q6S9pTfquW+Hv4uB9tbS/TEsC/i7iDfA+LyZCHq3cRI="; 462 + 463 + types-aiobotocore-marketplacecommerceanalytics = buildTypesAiobotocorePackage "marketplacecommerceanalytics" "2.6.0" "sha256-iyHFWN8tWgQoShTO6bJQB89K+4JVWjMihzjMr2Lssvw="; 464 + 465 + types-aiobotocore-mediaconnect = buildTypesAiobotocorePackage "mediaconnect" "2.6.0" "sha256-hEwlISpSm6r+a1MXxSH3UrBOiNu+Cx9d1T2RsFfrcyA="; 466 + 467 + types-aiobotocore-mediaconvert = buildTypesAiobotocorePackage "mediaconvert" "2.6.0" "sha256-VdxG2yvN6g9UAn54OP6uafHGN+iHjNrfO4H5f5h6w18="; 468 + 469 + types-aiobotocore-medialive = buildTypesAiobotocorePackage "medialive" "2.6.0" "sha256-hrfqkhKWIcP+fjDaeFjvk6c6GBTgsY3yxPodx9fFpxk="; 470 + 471 + types-aiobotocore-mediapackage = buildTypesAiobotocorePackage "mediapackage" "2.6.0" "sha256-c7XLKvwiQL6e0tWH0DmOyauTz3q5b0hOVpjVzR1rmH8="; 472 + 473 + types-aiobotocore-mediapackage-vod = buildTypesAiobotocorePackage "mediapackage-vod" "2.6.0" "sha256-zw2mJFQgX9xqjsvldssfMeulgCEY0kqaNg+nUe9PpCc="; 474 + 475 + types-aiobotocore-mediapackagev2 = buildTypesAiobotocorePackage "mediapackagev2" "2.6.0" "sha256-fdZn+f03iIzzkpSCdTh2uUY4WcU1DcyRxozP7SSkGyo="; 476 + 477 + types-aiobotocore-mediastore = buildTypesAiobotocorePackage "mediastore" "2.6.0" "sha256-KoZKeJPlIWhgifauIOSSLZaSJWn3E0lSNUOhKPfI0Go="; 478 + 479 + types-aiobotocore-mediastore-data = buildTypesAiobotocorePackage "mediastore-data" "2.6.0" "sha256-HT/Kvi15YJLEno70ayEXQLPi9Y6NlRD8134IRJ7gdRY="; 480 + 481 + types-aiobotocore-mediatailor = buildTypesAiobotocorePackage "mediatailor" "2.6.0" "sha256-3F1Gpd2kOU1rS7iSyDr0pkRECqYsyeeEQKDH2OO9H/A="; 482 + 483 + types-aiobotocore-medical-imaging = buildTypesAiobotocorePackage "medical-imaging" "2.6.0" "sha256-zUXGqquEveHHDqA8XeJX++Yc42rnyW9Vzt5A7LOImfk="; 484 + 485 + types-aiobotocore-memorydb = buildTypesAiobotocorePackage "memorydb" "2.6.0" "sha256-FJ9aeZRCY+bhot3cU3qX4EuFAowPCc7kT2D0FGVTpys="; 486 + 487 + types-aiobotocore-meteringmarketplace = buildTypesAiobotocorePackage "meteringmarketplace" "2.6.0" "sha256-WsWw1y5XueMQnRTWYQP73GawsSzEsliPzu9Xlij3UAo="; 488 + 489 + types-aiobotocore-mgh = buildTypesAiobotocorePackage "mgh" "2.6.0" "sha256-7wvX7X/NdB+GlWDogT2benTSC7ZCdVv97Zi6r+s5B2E="; 490 + 491 + types-aiobotocore-mgn = buildTypesAiobotocorePackage "mgn" "2.6.0" "sha256-e6TTldFkZXf8A8bV7RKkIl6AD/lCC9elB6mT3WeWEiM="; 492 + 493 + types-aiobotocore-migration-hub-refactor-spaces = buildTypesAiobotocorePackage "migration-hub-refactor-spaces" "2.6.0" "sha256-HVoia2UZMrjgH6aUQGit+MueUk0qW3KjWKYJy2pHlp0="; 494 + 495 + types-aiobotocore-migrationhub-config = buildTypesAiobotocorePackage "migrationhub-config" "2.6.0" "sha256-hXju28oSNGlQ0qCwFD+qoyWFpKMbFkGWEXteOVOKiII="; 496 + 497 + types-aiobotocore-migrationhuborchestrator = buildTypesAiobotocorePackage "migrationhuborchestrator" "2.6.0" "sha256-mo4vH/xsbRf1UViSRu4P2YzI+7LFkkzXsHeZZLdXg+U="; 498 + 499 + types-aiobotocore-migrationhubstrategy = buildTypesAiobotocorePackage "migrationhubstrategy" "2.6.0" "sha256-eU4j+9z++Kgp2TaUX214XGuIXPxCriKu9w+XW8mZp+c="; 500 + 501 + types-aiobotocore-mobile = buildTypesAiobotocorePackage "mobile" "2.6.0" "sha256-HKolI0fcGWye3Xow73qXOJRQ/Wb23ZXWLYyfA94zZT0="; 502 + 503 + types-aiobotocore-mq = buildTypesAiobotocorePackage "mq" "2.6.0" "sha256-61iFbkOYLF6y1QUGePVAVEFqGgTmPbLYS7VDbvzmInA="; 504 + 505 + types-aiobotocore-mturk = buildTypesAiobotocorePackage "mturk" "2.6.0" "sha256-pdRp9XjLVLCHeMSMV+NycKNt9kbH93/ZJKbiwNlb+A4="; 506 + 507 + types-aiobotocore-mwaa = buildTypesAiobotocorePackage "mwaa" "2.6.0" "sha256-3/LXxvsVmKHpZPr1BISTndLFPmF3LF75kihknSt2cMk="; 508 + 509 + types-aiobotocore-neptune = buildTypesAiobotocorePackage "neptune" "2.6.0" "sha256-2EIBP4NhRy+/OeFuPP/SIf1q6BhlKU9CFH7AM+y3558="; 510 + 511 + types-aiobotocore-network-firewall = buildTypesAiobotocorePackage "network-firewall" "2.6.0" "sha256-3bVNQSzaMhkpiN1mhS9Lz2EfeEJpkSIcPCKPC6s02Uo="; 512 + 513 + types-aiobotocore-networkmanager = buildTypesAiobotocorePackage "networkmanager" "2.6.0" "sha256-Pwmgi4ybpOtLWlY62+QcBHT0iF/6B4Hxbv4CQPA+7/o="; 514 + 515 + types-aiobotocore-nimble = buildTypesAiobotocorePackage "nimble" "2.6.0" "sha256-x+wmTG6jeK8KpSDdhOZkbkRZ7ai7N4xaU4cEmHhO5xA="; 516 + 517 + types-aiobotocore-oam = buildTypesAiobotocorePackage "oam" "2.6.0" "sha256-Q/msYeaXs9MxXj6X0p8Gw08/Y4FvvV2xAbEXU6iqi2g="; 518 + 519 + types-aiobotocore-omics = buildTypesAiobotocorePackage "omics" "2.6.0" "sha256-UB0y0l2fb58yNJr36WpCeTDETAcdQkYd2ueETFEQSTo="; 520 + 521 + types-aiobotocore-opensearch = buildTypesAiobotocorePackage "opensearch" "2.6.0" "sha256-ynRq7qRVNgpsP4lp6pbZqTv3zrF5Zu1v+STvv/yPgKw="; 522 + 523 + types-aiobotocore-opensearchserverless = buildTypesAiobotocorePackage "opensearchserverless" "2.6.0" "sha256-M2tvTKjIg8aEP3KZvrMTCgiJqb6oWL9T5ylkj+Fr184="; 524 + 525 + types-aiobotocore-opsworks = buildTypesAiobotocorePackage "opsworks" "2.6.0" "sha256-XY9DqNQUjFaumcOd2dvX/kV2sWt67Ni26H5SzCarr2E="; 526 + 527 + types-aiobotocore-opsworkscm = buildTypesAiobotocorePackage "opsworkscm" "2.6.0" "sha256-k1QO54TXJJG5jAvPcoEyZEdEXSmLzHdSPDyF60Zmf78="; 528 + 529 + types-aiobotocore-organizations = buildTypesAiobotocorePackage "organizations" "2.6.0" "sha256-kDxDdLaWlaNLfSCOc5Kho73cbk33FnK9c12PYKhdbFQ="; 530 + 531 + types-aiobotocore-osis = buildTypesAiobotocorePackage "osis" "2.6.0" "sha256-Q8EIdCvT0Zjj9udUNpWZzgNClVjNBWTW3V7emhdf+yg="; 532 + 533 + types-aiobotocore-outposts = buildTypesAiobotocorePackage "outposts" "2.6.0" "sha256-tXAQ+tNeZUF1snrB+76Ku+j1Wdslah38s0YMBOINrlo="; 534 + 535 + types-aiobotocore-panorama = buildTypesAiobotocorePackage "panorama" "2.6.0" "sha256-/XJsZV5Yhp5BMSheF9zVf+MSJsH2zUrpnrkSwo+4PfI="; 536 + 537 + types-aiobotocore-payment-cryptography = buildTypesAiobotocorePackage "payment-cryptography" "2.6.0" "sha256-x6uUO578BIDl1kFdyKXSPnegKLAX3FG4U5rDjsQpVQQ="; 538 + 539 + types-aiobotocore-payment-cryptography-data = buildTypesAiobotocorePackage "payment-cryptography-data" "2.6.0" "sha256-+eHgcPA+egPBR06Mddw0RXuivpiprPMnBhPfCmh0sS4="; 540 + 541 + types-aiobotocore-personalize = buildTypesAiobotocorePackage "personalize" "2.6.0" "sha256-5s0KmOdQyPtcFtb+XkR/zHEiEdZcDwZwldwUy+dvC4s="; 542 + 543 + types-aiobotocore-personalize-events = buildTypesAiobotocorePackage "personalize-events" "2.6.0" "sha256-+9wtXNgXQhACa8NYfcjbZcJj0j9PlOavxs+c4NXy0kE="; 544 + 545 + types-aiobotocore-personalize-runtime = buildTypesAiobotocorePackage "personalize-runtime" "2.6.0" "sha256-tvLfXhaFpdivIBtFYp0G4/QihOMSGXK1nVDFKuMJCto="; 546 + 547 + types-aiobotocore-pi = buildTypesAiobotocorePackage "pi" "2.6.0" "sha256-j0ngXkDGIhSh/b1RPn+NY6V2BAUZJdvuT18iALwRkAY="; 548 + 549 + types-aiobotocore-pinpoint = buildTypesAiobotocorePackage "pinpoint" "2.6.0" "sha256-Txme0jlgoF9IYywdKqv71kcEqBfF1juTJcagi/2wQ20="; 550 + 551 + types-aiobotocore-pinpoint-email = buildTypesAiobotocorePackage "pinpoint-email" "2.6.0" "sha256-c6tqmW7i5AXrH2PFyVPCpBkDaiMdTu2fmbHeuc3SzPg="; 552 + 553 + types-aiobotocore-pinpoint-sms-voice = buildTypesAiobotocorePackage "pinpoint-sms-voice" "2.6.0" "sha256-qvVYusxMw+ZrMJAKXqk1HzEDYHsvaUthnYMDF6b0xbQ="; 554 + 555 + types-aiobotocore-pinpoint-sms-voice-v2 = buildTypesAiobotocorePackage "pinpoint-sms-voice-v2" "2.6.0" "sha256-ErqAFQYtKfsNABPm+KpOKm88Mh5MmXou6bqJfsqXdt0="; 556 + 557 + types-aiobotocore-pipes = buildTypesAiobotocorePackage "pipes" "2.6.0" "sha256-vOszu7z/DiZwXrdqoiLUlpLQLNNuRbskI59BBippizI="; 558 + 559 + types-aiobotocore-polly = buildTypesAiobotocorePackage "polly" "2.6.0" "sha256-AKP23N3xMzdOti6J7vONDM/cwdqTHYkiM6c/njspSXI="; 560 + 561 + types-aiobotocore-pricing = buildTypesAiobotocorePackage "pricing" "2.6.0" "sha256-PccslOI6F2k50g03j22AYN3xtTsTW3ie4W4pEaT2XwY="; 562 + 563 + types-aiobotocore-privatenetworks = buildTypesAiobotocorePackage "privatenetworks" "2.6.0" "sha256-3e6/IA6QYgGhipt5XP/b4h3soko1tLntMieXOmeWjlI="; 564 + 565 + types-aiobotocore-proton = buildTypesAiobotocorePackage "proton" "2.6.0" "sha256-rtJ+idGSdRVZafFNppQgIQUobKzClCKHf4RqlBtppBw="; 566 + 567 + types-aiobotocore-qldb = buildTypesAiobotocorePackage "qldb" "2.6.0" "sha256-AqV8yAUYTT8nc3jQkq0qDzZRKxewsrxIR/kVJiX3fwI="; 568 + 569 + types-aiobotocore-qldb-session = buildTypesAiobotocorePackage "qldb-session" "2.6.0" "sha256-N4YntFIEyhhryAaIFY8Gu4Uehw6D/VcTeIlBxx7ej4c="; 570 + 571 + types-aiobotocore-quicksight = buildTypesAiobotocorePackage "quicksight" "2.6.0" "sha256-DOum/vx6URynxImQN9SRhAr5rFgZdSJMdtAMom5YHe8="; 572 + 573 + types-aiobotocore-ram = buildTypesAiobotocorePackage "ram" "2.6.0" "sha256-pZ/h8/1njNNp9+nhpbU/VhGevrZkSrWnhWm3weHAxWQ="; 574 + 575 + types-aiobotocore-rbin = buildTypesAiobotocorePackage "rbin" "2.6.0" "sha256-TOI2FQdO71XT1NESXGrZN+UI6c7CGRmsBbp4ipuQwhg="; 576 + 577 + types-aiobotocore-rds = buildTypesAiobotocorePackage "rds" "2.6.0" "sha256-M0IDOMbqGdLl0WSipPirjDn3Fr4AQ06+j3m0Ci3jyBE="; 578 + 579 + types-aiobotocore-rds-data = buildTypesAiobotocorePackage "rds-data" "2.6.0" "sha256-GYddRqZeBP5f6chzZON9y59KcBiss9eWa8rVGo53C0g="; 580 + 581 + types-aiobotocore-redshift = buildTypesAiobotocorePackage "redshift" "2.6.0" "sha256-6znZQUxNKE7SB6G+9l4iQSP9hZt+plKFA8VkE1scxrU="; 582 + 583 + types-aiobotocore-redshift-data = buildTypesAiobotocorePackage "redshift-data" "2.6.0" "sha256-FRJeBjA5dfnnZ586VShmPt0CBgi5+ZYbldOUZIGR2L0="; 584 + 585 + types-aiobotocore-redshift-serverless = buildTypesAiobotocorePackage "redshift-serverless" "2.6.0" "sha256-lMNUId8z4h/m0FmusvEjYoQj+PUSLaiOREd27vF3qxI="; 586 + 587 + types-aiobotocore-rekognition = buildTypesAiobotocorePackage "rekognition" "2.6.0" "sha256-8luG3yWj82hmMq5KYjNG58pbiDBMk+D6ykgzqE752T8="; 588 + 589 + types-aiobotocore-resiliencehub = buildTypesAiobotocorePackage "resiliencehub" "2.6.0" "sha256-nXZ7ZrpEOSdXdcuGVMNI7hjx6oisnnej18vALIEEzGQ="; 590 + 591 + types-aiobotocore-resource-explorer-2 = buildTypesAiobotocorePackage "resource-explorer-2" "2.6.0" "sha256-cjBd3Ns1ckr7DT9gpaeb8CbXOrmwU3gENN5Is5BwrZI="; 592 + 593 + types-aiobotocore-resource-groups = buildTypesAiobotocorePackage "resource-groups" "2.6.0" "sha256-GcbI21WVdMmwMcpbBkma4VrLsLVRP24/Uk43+4vE864="; 594 + 595 + types-aiobotocore-resourcegroupstaggingapi = buildTypesAiobotocorePackage "resourcegroupstaggingapi" "2.6.0" "sha256-pW8/wn2Qk1jf1d2kYZ84yEaNUcl6xgHw+yuT0bHnsBE="; 596 + 597 + types-aiobotocore-robomaker = buildTypesAiobotocorePackage "robomaker" "2.6.0" "sha256-aKO/fGT4UANiYkZOUuOQ4ungKpW8p+yAT5+42WHgp3M="; 598 + 599 + types-aiobotocore-rolesanywhere = buildTypesAiobotocorePackage "rolesanywhere" "2.6.0" "sha256-jTAe8nMwbXwb+1uf9ITVIKtKyOLIwFH6yi+2IYYVIyU="; 600 + 601 + types-aiobotocore-route53 = buildTypesAiobotocorePackage "route53" "2.6.0" "sha256-RMIrcFD+1RbA3AcRw3TSjENBzmHQL1zHX7FoOFA+UP0="; 602 + 603 + types-aiobotocore-route53-recovery-cluster = buildTypesAiobotocorePackage "route53-recovery-cluster" "2.6.0" "sha256-mBwT11n8moLt/j46AayYES6rjVo3Tpa5UWJ4Klb1N0g="; 604 + 605 + types-aiobotocore-route53-recovery-control-config = buildTypesAiobotocorePackage "route53-recovery-control-config" "2.6.0" "sha256-qYYT1FRpqxtR9LPGMOH+p0+kbeGvfrlIE6rp5Nupioc="; 606 + 607 + types-aiobotocore-route53-recovery-readiness = buildTypesAiobotocorePackage "route53-recovery-readiness" "2.6.0" "sha256-66kGFeDv4PkKYd4UEL4Feqw5LnygBMGvHqctC4EWnNU="; 608 + 609 + types-aiobotocore-route53domains = buildTypesAiobotocorePackage "route53domains" "2.6.0" "sha256-TQ7aNPrky6O+xQefuSkHyFN0XJC5u3xMaT0yrjwYv3E="; 610 + 611 + types-aiobotocore-route53resolver = buildTypesAiobotocorePackage "route53resolver" "2.6.0" "sha256-55qUjFm6ryLjGAmxGLFkl9dPHXjDWyIINZQRQXe4bnk="; 612 + 613 + types-aiobotocore-rum = buildTypesAiobotocorePackage "rum" "2.6.0" "sha256-e8LzXHMfEgkcJKx5a/I//L4/oCz1l7N487wNoTtBP1Y="; 614 + 615 + types-aiobotocore-s3 = buildTypesAiobotocorePackage "s3" "2.6.0" "sha256-MIp/lGwJah2Jj/2KFfoeW2uQlV1DZbP8TYcdsNvEMU8="; 616 + 617 + types-aiobotocore-s3control = buildTypesAiobotocorePackage "s3control" "2.6.0" "sha256-eyiAFFT5KOtTDT2EZNah1KRdcWw1v1titjHwG3DnRj4="; 618 + 619 + types-aiobotocore-s3outposts = buildTypesAiobotocorePackage "s3outposts" "2.6.0" "sha256-g4wAsVc3gqiovsXZtEey4XKmLp/UkIeKD1pEjiey5DE="; 620 + 621 + types-aiobotocore-sagemaker = buildTypesAiobotocorePackage "sagemaker" "2.6.0" "sha256-GUcRyWviI+JCG7XTGBQcUljxAdjBzso76d5A3ql5lbA="; 622 + 623 + types-aiobotocore-sagemaker-a2i-runtime = buildTypesAiobotocorePackage "sagemaker-a2i-runtime" "2.6.0" "sha256-7znJt8gJGnBbTndTPeFOpN6iytOPTJPgvA/tHeYQVoo="; 624 + 625 + types-aiobotocore-sagemaker-edge = buildTypesAiobotocorePackage "sagemaker-edge" "2.6.0" "sha256-O3oCXuvREHW7lcwDzbJRogb9Qa2Wfb8C5/rbpjhVm8A="; 626 + 627 + types-aiobotocore-sagemaker-featurestore-runtime = buildTypesAiobotocorePackage "sagemaker-featurestore-runtime" "2.6.0" "sha256-mcU7ZGAGzbV7i8H1qMWFI9vm/8APRfmaAncxKBJL+NU="; 628 + 629 + types-aiobotocore-sagemaker-geospatial = buildTypesAiobotocorePackage "sagemaker-geospatial" "2.6.0" "sha256-uKvgKNZHFZIYsE0hMWjuHN+QzI/eQcCn4HD2C8H+d2I="; 630 + 631 + types-aiobotocore-sagemaker-metrics = buildTypesAiobotocorePackage "sagemaker-metrics" "2.6.0" "sha256-Hnq9JAdPiqfhb/uLQhMk7JWZ8xHko06KqHXh9f6al/8="; 632 + 633 + types-aiobotocore-sagemaker-runtime = buildTypesAiobotocorePackage "sagemaker-runtime" "2.6.0" "sha256-/7Zzo383eWFjEHxZST1QKzTNHunhR8mjSE2uEHUw9IE="; 634 + 635 + types-aiobotocore-savingsplans = buildTypesAiobotocorePackage "savingsplans" "2.6.0" "sha256-6sIHmILzIg1aOskXnjbDDzbkygXDwFcnd9mfuuhRFZQ="; 636 + 637 + types-aiobotocore-scheduler = buildTypesAiobotocorePackage "scheduler" "2.6.0" "sha256-2BnFCPgaAWxBsc+79oQT+DDj6IM7cV7F+LjqsFG6BBc="; 638 + 639 + types-aiobotocore-schemas = buildTypesAiobotocorePackage "schemas" "2.6.0" "sha256-TW57DJw0QgnPrIWlOlAvESYSEPUD/UKbXVs+NYW+7r0="; 640 + 641 + types-aiobotocore-sdb = buildTypesAiobotocorePackage "sdb" "2.6.0" "sha256-cLciwg4d5EZKYquNitl3yD+8eJnemEiF27LcXfxy0Zs="; 642 + 643 + types-aiobotocore-secretsmanager = buildTypesAiobotocorePackage "secretsmanager" "2.6.0" "sha256-dvte4Yjl+a/UqL5v7xJ9626igVjx/ZPdM2SsLGsVdDk="; 644 + 645 + types-aiobotocore-securityhub = buildTypesAiobotocorePackage "securityhub" "2.6.0" "sha256-36BIOCHnkFyEp3MPa5NfjNJNBeqVMCmx9C907Bw3YWQ="; 646 + 647 + types-aiobotocore-securitylake = buildTypesAiobotocorePackage "securitylake" "2.6.0" "sha256-DKmk2ddd7b0g6mnt0d37Y1ofb6dgN/6XFBCElqdQ9+A="; 648 + 649 + types-aiobotocore-serverlessrepo = buildTypesAiobotocorePackage "serverlessrepo" "2.6.0" "sha256-PRzh/JFCHUqXTSAR4IoftxvkRBsVq4XEX7ihC9FzqSI="; 650 + 651 + types-aiobotocore-service-quotas = buildTypesAiobotocorePackage "service-quotas" "2.6.0" "sha256-GcDl3LIy+urPEzXINmU4g7xgk8IIIJ6fBFFXhv18eSA="; 652 + 653 + types-aiobotocore-servicecatalog = buildTypesAiobotocorePackage "servicecatalog" "2.6.0" "sha256-5IoQuLh6bh3mlzInR+Aci6yIRCSYJXfbvv49FEs2tPA="; 654 + 655 + types-aiobotocore-servicecatalog-appregistry = buildTypesAiobotocorePackage "servicecatalog-appregistry" "2.6.0" "sha256-l0xrQXkDYmB3+RFtwJ70l6GgKeA0z1V107HG8Ddvb8U="; 656 + 657 + types-aiobotocore-servicediscovery = buildTypesAiobotocorePackage "servicediscovery" "2.6.0" "sha256-KLdOmaO6x7AmQInP1RRAf8s5rlpD0PpDHeBnor5gl2A="; 658 + 659 + types-aiobotocore-ses = buildTypesAiobotocorePackage "ses" "2.6.0" "sha256-QNjpM0m1PKSQx2f1eNkOeNP7pHN0PfHZlMFVQbGOgGU="; 660 + 661 + types-aiobotocore-sesv2 = buildTypesAiobotocorePackage "sesv2" "2.6.0" "sha256-5g1LUvS324evqH+Rv+pUKlePnE3QqMqpiLCrknxjQX8="; 662 + 663 + types-aiobotocore-shield = buildTypesAiobotocorePackage "shield" "2.6.0" "sha256-5NbnrGPo9jTCIxq7ubNX/OuKZOXU0PoSwgTjfuMvnKY="; 664 + 665 + types-aiobotocore-signer = buildTypesAiobotocorePackage "signer" "2.6.0" "sha256-AZRsUZpKhzPiHoUcboBeX5zYlVD9kY6F4n6/ifRTpr8="; 666 + 667 + types-aiobotocore-simspaceweaver = buildTypesAiobotocorePackage "simspaceweaver" "2.6.0" "sha256-WrkKQxXI7eIaX4GimyDyBqDWVjw0eF3jJTA40JScvG0="; 668 + 669 + types-aiobotocore-sms = buildTypesAiobotocorePackage "sms" "2.6.0" "sha256-I//ZK5HolYkCfpTCPYhEDALfcn9AYcLk7x7vfRjTDlo="; 670 + 671 + types-aiobotocore-sms-voice = buildTypesAiobotocorePackage "sms-voice" "2.6.0" "sha256-Qz+ZXVBSe3kHgGlqQjgxWoQhnguqauxmPKaISQbAG/8="; 672 + 673 + types-aiobotocore-snow-device-management = buildTypesAiobotocorePackage "snow-device-management" "2.6.0" "sha256-Fh35RpHExkL/PeqEnWNR2pJYWERDJzOF9oE3SvIxxQ4="; 674 + 675 + types-aiobotocore-snowball = buildTypesAiobotocorePackage "snowball" "2.6.0" "sha256-Wia4Xc/Kt8j6X5rZ9vvxupr6tCv1XQQQFOwRnugL0lE="; 676 + 677 + types-aiobotocore-sns = buildTypesAiobotocorePackage "sns" "2.6.0" "sha256-hDPU7e14iYcpt8dXzjx7PgT4TQloAn2ZYrq6cMtMncc="; 678 + 679 + types-aiobotocore-sqs = buildTypesAiobotocorePackage "sqs" "2.6.0" "sha256-J5QSpJQjhO6T2uGpDstHdEVJTLuTIxilmYmKdtB7u6g="; 680 + 681 + types-aiobotocore-ssm = buildTypesAiobotocorePackage "ssm" "2.6.0" "sha256-NxTwgcrDNOHZ8PReIgfTOGLTl7bL1948NKAyjJ0QYKc="; 682 + 683 + types-aiobotocore-ssm-contacts = buildTypesAiobotocorePackage "ssm-contacts" "2.6.0" "sha256-fWnCKnG6ikXzDx40HFxlh9DyLVlX9pBB4CMcJxUt+Ps="; 684 + 685 + types-aiobotocore-ssm-incidents = buildTypesAiobotocorePackage "ssm-incidents" "2.6.0" "sha256-6wkvuRGT91a0Ggxt13amMzjWd6Pj62w4nrvWQNQ0GxI="; 686 + 687 + types-aiobotocore-ssm-sap = buildTypesAiobotocorePackage "ssm-sap" "2.6.0" "sha256-7NkEDcuph8xxjlDjuEiSuhvM5srAeY4QfAKLwFLhCsU="; 688 + 689 + types-aiobotocore-sso = buildTypesAiobotocorePackage "sso" "2.6.0" "sha256-pM6yxg0MxTXjSWZ/CLsatlIMx4tO0p9ZKRzOhyJYXWc="; 690 + 691 + types-aiobotocore-sso-admin = buildTypesAiobotocorePackage "sso-admin" "2.6.0" "sha256-idc5d/Kvjhd7RkTHuErSoP/f64/Q1+jg0TE3UMiL4pQ="; 692 + 693 + types-aiobotocore-sso-oidc = buildTypesAiobotocorePackage "sso-oidc" "2.6.0" "sha256-3eJaNx/Tzy9XQtHSPGKlkMG7klB2KDgL60knGghWAn8="; 694 + 695 + types-aiobotocore-stepfunctions = buildTypesAiobotocorePackage "stepfunctions" "2.6.0" "sha256-7y8SiLa09lDqnMZtlG0Qw5tvAvQMvTNqMuCpRecOpXc="; 696 + 697 + types-aiobotocore-storagegateway = buildTypesAiobotocorePackage "storagegateway" "2.6.0" "sha256-Umq4Slts9RHPJRJCWRAIAizLxB9Clcz8GomLsUr5gNE="; 698 + 699 + types-aiobotocore-sts = buildTypesAiobotocorePackage "sts" "2.6.0" "sha256-iRwalkojzQCUiAQcxl8hEYFFbnIxhuaJfrATnK18ltI="; 700 + 701 + types-aiobotocore-support = buildTypesAiobotocorePackage "support" "2.6.0" "sha256-+4rnAV2Qr29bvWRO6TnSaRZkUVCoefB3SDXc2Ye9kpE="; 702 + 703 + types-aiobotocore-support-app = buildTypesAiobotocorePackage "support-app" "2.6.0" "sha256-CXYfdtO1TdmEz39v2AEeCTJmgiA/EF1gmaBBYGRgYV0="; 704 + 705 + types-aiobotocore-swf = buildTypesAiobotocorePackage "swf" "2.6.0" "sha256-x9cBjUe4LC9uSsFpPciZP1QlUEqfNo3xZFKUqPuVV6E="; 706 + 707 + types-aiobotocore-synthetics = buildTypesAiobotocorePackage "synthetics" "2.6.0" "sha256-Wew0A2xIYOGXzfZf3sBpHnRW/dZD1s6wHveNMwYj1s4="; 708 + 709 + types-aiobotocore-textract = buildTypesAiobotocorePackage "textract" "2.6.0" "sha256-vWUMopzR+1095nN6POsHShvCKZIcUwfW11oMOJ9R94c="; 710 + 711 + types-aiobotocore-timestream-query = buildTypesAiobotocorePackage "timestream-query" "2.6.0" "sha256-4QpCK14NogeYR9DB877zh760GEXYieiyOgepB9DZd+8="; 712 + 713 + types-aiobotocore-timestream-write = buildTypesAiobotocorePackage "timestream-write" "2.6.0" "sha256-bBcMTJOVFq1mJQZtc9M/EMT45Xxxk2DqDgVHfM3qt3A="; 714 + 715 + types-aiobotocore-tnb = buildTypesAiobotocorePackage "tnb" "2.6.0" "sha256-c4Y5kilT50Ips16/YhwduNbm89gB4iLHFv8eN8T4NDM="; 716 + 717 + types-aiobotocore-transcribe = buildTypesAiobotocorePackage "transcribe" "2.6.0" "sha256-HB1CKe9mkD0+0TdFXmdiphDUqc+4xbwBIXSu0PulBE4="; 718 + 719 + types-aiobotocore-transfer = buildTypesAiobotocorePackage "transfer" "2.6.0" "sha256-59SvnKQ+WpAKUZNYunFywLLah1aBnF0maZrFbALXcIM="; 720 + 721 + types-aiobotocore-translate = buildTypesAiobotocorePackage "translate" "2.6.0" "sha256-cgxE6GYG9c4234RAiyFfF22NPHJ29oytOvLpETnjdS4="; 722 + 723 + types-aiobotocore-verifiedpermissions = buildTypesAiobotocorePackage "verifiedpermissions" "2.6.0" "sha256-yg4zDBjgSB7JuuS2DXIUe3PFQq9stIfEJSMF1IP2BWI="; 724 + 725 + types-aiobotocore-voice-id = buildTypesAiobotocorePackage "voice-id" "2.6.0" "sha256-Pnn3CGL5rr3MtzaakjDXmReVKXnyB76IxSnAPnKU45I="; 726 + 727 + types-aiobotocore-vpc-lattice = buildTypesAiobotocorePackage "vpc-lattice" "2.6.0" "sha256-kxniFLA2e7aDKulF5z1Ap3z6wbE3eY3QVqhK+CVhrcE="; 728 + 729 + types-aiobotocore-waf = buildTypesAiobotocorePackage "waf" "2.6.0" "sha256-adKf+AbPmeN57r93T36IewoiLZ+05CbpuS7NxCkQgMw="; 730 + 731 + types-aiobotocore-waf-regional = buildTypesAiobotocorePackage "waf-regional" "2.6.0" "sha256-56SIq8Q6B405aqKU8UMddGHyrJeFaVKZSG4ImBWBZLU="; 732 + 733 + types-aiobotocore-wafv2 = buildTypesAiobotocorePackage "wafv2" "2.6.0" "sha256-nAGK0tN42UhDUmpztGeAPRS5FuuTt+LugQmcgkR0oLA="; 734 + 735 + types-aiobotocore-wellarchitected = buildTypesAiobotocorePackage "wellarchitected" "2.6.0" "sha256-p/2uqdRwKgsS2EUCr8ZLds6WHUjVQz8mEv35qcyMTYA="; 736 + 737 + types-aiobotocore-wisdom = buildTypesAiobotocorePackage "wisdom" "2.6.0" "sha256-EInqI5EqriiI2L/tdQiy3/jY8tnZ6+QOk9PdEyDuSj4="; 738 + 739 + types-aiobotocore-workdocs = buildTypesAiobotocorePackage "workdocs" "2.6.0" "sha256-cNegCM7a4QlI+NLzIRIoGHYzQqbFkNRKqDKLOqE3OUY="; 740 + 741 + types-aiobotocore-worklink = buildTypesAiobotocorePackage "worklink" "2.6.0" "sha256-hMPU0wmTi0BQ+AWo4T6DIOl6FrAQbzdal8rcPoY3wP0="; 742 + 743 + types-aiobotocore-workmail = buildTypesAiobotocorePackage "workmail" "2.6.0" "sha256-W/kHZMLFQ7kv8i/3urxbjdXc7RorMyy5joJNtFPAhVU="; 744 + 745 + types-aiobotocore-workmailmessageflow = buildTypesAiobotocorePackage "workmailmessageflow" "2.6.0" "sha256-Mc3h0CSmJRoV+ncwhtd4Tu5LSoasWqK8V9hXK5+XYfs="; 746 + 747 + types-aiobotocore-workspaces = buildTypesAiobotocorePackage "workspaces" "2.6.0" "sha256-xtsxrIzhjJSoGqd1fEgXP55bRtDsJTtdoWn8eooHCmY="; 748 + 749 + types-aiobotocore-workspaces-web = buildTypesAiobotocorePackage "workspaces-web" "2.6.0" "sha256-J3lsLnwcttamV4NroDuXz9EupXrsoN/SumKrykQkwVU="; 750 + 751 + types-aiobotocore-xray = buildTypesAiobotocorePackage "xray" "2.6.0" "sha256-DPirH1s636ZW6VKyD4wMiJEfM+u9NknH0ODLQagaLrs="; 752 + }
+1824
pkgs/development/python-modules/types-aiobotocore/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , setuptools 5 + , wheel 6 + , botocore-stubs 7 + , typing-extensions 8 + , types-aiobotocore-accessanalyzer 9 + , types-aiobotocore-account 10 + , types-aiobotocore-acm 11 + , types-aiobotocore-acm-pca 12 + , aiobotocore 13 + , botocore 14 + , types-aiobotocore-alexaforbusiness 15 + , types-aiobotocore-amp 16 + , types-aiobotocore-amplify 17 + , types-aiobotocore-amplifybackend 18 + , types-aiobotocore-amplifyuibuilder 19 + , types-aiobotocore-apigateway 20 + , types-aiobotocore-apigatewaymanagementapi 21 + , types-aiobotocore-apigatewayv2 22 + , types-aiobotocore-appconfig 23 + , types-aiobotocore-appconfigdata 24 + , types-aiobotocore-appfabric 25 + , types-aiobotocore-appflow 26 + , types-aiobotocore-appintegrations 27 + , types-aiobotocore-application-autoscaling 28 + , types-aiobotocore-application-insights 29 + , types-aiobotocore-applicationcostprofiler 30 + , types-aiobotocore-appmesh 31 + , types-aiobotocore-apprunner 32 + , types-aiobotocore-appstream 33 + , types-aiobotocore-appsync 34 + , types-aiobotocore-arc-zonal-shift 35 + , types-aiobotocore-athena 36 + , types-aiobotocore-auditmanager 37 + , types-aiobotocore-autoscaling 38 + , types-aiobotocore-autoscaling-plans 39 + , types-aiobotocore-backup 40 + , types-aiobotocore-backup-gateway 41 + , types-aiobotocore-backupstorage 42 + , types-aiobotocore-batch 43 + , types-aiobotocore-billingconductor 44 + , types-aiobotocore-braket 45 + , types-aiobotocore-budgets 46 + , types-aiobotocore-ce 47 + , types-aiobotocore-chime 48 + , types-aiobotocore-chime-sdk-identity 49 + , types-aiobotocore-chime-sdk-media-pipelines 50 + , types-aiobotocore-chime-sdk-meetings 51 + , types-aiobotocore-chime-sdk-messaging 52 + , types-aiobotocore-chime-sdk-voice 53 + , types-aiobotocore-cleanrooms 54 + , types-aiobotocore-cloud9 55 + , types-aiobotocore-cloudcontrol 56 + , types-aiobotocore-clouddirectory 57 + , types-aiobotocore-cloudformation 58 + , types-aiobotocore-cloudfront 59 + , types-aiobotocore-cloudhsm 60 + , types-aiobotocore-cloudhsmv2 61 + , types-aiobotocore-cloudsearch 62 + , types-aiobotocore-cloudsearchdomain 63 + , types-aiobotocore-cloudtrail 64 + , types-aiobotocore-cloudtrail-data 65 + , types-aiobotocore-cloudwatch 66 + , types-aiobotocore-codeartifact 67 + , types-aiobotocore-codebuild 68 + , types-aiobotocore-codecatalyst 69 + , types-aiobotocore-codecommit 70 + , types-aiobotocore-codedeploy 71 + , types-aiobotocore-codeguru-reviewer 72 + , types-aiobotocore-codeguru-security 73 + , types-aiobotocore-codeguruprofiler 74 + , types-aiobotocore-codepipeline 75 + , types-aiobotocore-codestar 76 + , types-aiobotocore-codestar-connections 77 + , types-aiobotocore-codestar-notifications 78 + , types-aiobotocore-cognito-identity 79 + , types-aiobotocore-cognito-idp 80 + , types-aiobotocore-cognito-sync 81 + , types-aiobotocore-comprehend 82 + , types-aiobotocore-comprehendmedical 83 + , types-aiobotocore-compute-optimizer 84 + , types-aiobotocore-config 85 + , types-aiobotocore-connect 86 + , types-aiobotocore-connect-contact-lens 87 + , types-aiobotocore-connectcampaigns 88 + , types-aiobotocore-connectcases 89 + , types-aiobotocore-connectparticipant 90 + , types-aiobotocore-controltower 91 + , types-aiobotocore-cur 92 + , types-aiobotocore-customer-profiles 93 + , types-aiobotocore-databrew 94 + , types-aiobotocore-dataexchange 95 + , types-aiobotocore-datapipeline 96 + , types-aiobotocore-datasync 97 + , types-aiobotocore-dax 98 + , types-aiobotocore-detective 99 + , types-aiobotocore-devicefarm 100 + , types-aiobotocore-devops-guru 101 + , types-aiobotocore-directconnect 102 + , types-aiobotocore-discovery 103 + , types-aiobotocore-dlm 104 + , types-aiobotocore-dms 105 + , types-aiobotocore-docdb 106 + , types-aiobotocore-docdb-elastic 107 + , types-aiobotocore-drs 108 + , types-aiobotocore-ds 109 + , types-aiobotocore-dynamodb 110 + , types-aiobotocore-dynamodbstreams 111 + , types-aiobotocore-ebs 112 + , types-aiobotocore-ec2 113 + , types-aiobotocore-ec2-instance-connect 114 + , types-aiobotocore-ecr 115 + , types-aiobotocore-ecr-public 116 + , types-aiobotocore-ecs 117 + , types-aiobotocore-efs 118 + , types-aiobotocore-eks 119 + , types-aiobotocore-elastic-inference 120 + , types-aiobotocore-elasticache 121 + , types-aiobotocore-elasticbeanstalk 122 + , types-aiobotocore-elastictranscoder 123 + , types-aiobotocore-elb 124 + , types-aiobotocore-elbv2 125 + , types-aiobotocore-emr 126 + , types-aiobotocore-emr-containers 127 + , types-aiobotocore-emr-serverless 128 + , types-aiobotocore-entityresolution 129 + , types-aiobotocore-es 130 + , types-aiobotocore-events 131 + , types-aiobotocore-evidently 132 + , types-aiobotocore-finspace 133 + , types-aiobotocore-finspace-data 134 + , types-aiobotocore-firehose 135 + , types-aiobotocore-fis 136 + , types-aiobotocore-fms 137 + , types-aiobotocore-forecast 138 + , types-aiobotocore-forecastquery 139 + , types-aiobotocore-frauddetector 140 + , types-aiobotocore-fsx 141 + , types-aiobotocore-gamelift 142 + , types-aiobotocore-gamesparks 143 + , types-aiobotocore-glacier 144 + , types-aiobotocore-globalaccelerator 145 + , types-aiobotocore-glue 146 + , types-aiobotocore-grafana 147 + , types-aiobotocore-greengrass 148 + , types-aiobotocore-greengrassv2 149 + , types-aiobotocore-groundstation 150 + , types-aiobotocore-guardduty 151 + , types-aiobotocore-health 152 + , types-aiobotocore-healthlake 153 + , types-aiobotocore-honeycode 154 + , types-aiobotocore-iam 155 + , types-aiobotocore-identitystore 156 + , types-aiobotocore-imagebuilder 157 + , types-aiobotocore-importexport 158 + , types-aiobotocore-inspector 159 + , types-aiobotocore-inspector2 160 + , types-aiobotocore-internetmonitor 161 + , types-aiobotocore-iot 162 + , types-aiobotocore-iot-data 163 + , types-aiobotocore-iot-jobs-data 164 + , types-aiobotocore-iot-roborunner 165 + , types-aiobotocore-iot1click-devices 166 + , types-aiobotocore-iot1click-projects 167 + , types-aiobotocore-iotanalytics 168 + , types-aiobotocore-iotdeviceadvisor 169 + , types-aiobotocore-iotevents 170 + , types-aiobotocore-iotevents-data 171 + , types-aiobotocore-iotfleethub 172 + , types-aiobotocore-iotfleetwise 173 + , types-aiobotocore-iotsecuretunneling 174 + , types-aiobotocore-iotsitewise 175 + , types-aiobotocore-iotthingsgraph 176 + , types-aiobotocore-iottwinmaker 177 + , types-aiobotocore-iotwireless 178 + , types-aiobotocore-ivs 179 + , types-aiobotocore-ivs-realtime 180 + , types-aiobotocore-ivschat 181 + , types-aiobotocore-kafka 182 + , types-aiobotocore-kafkaconnect 183 + , types-aiobotocore-kendra 184 + , types-aiobotocore-kendra-ranking 185 + , types-aiobotocore-keyspaces 186 + , types-aiobotocore-kinesis 187 + , types-aiobotocore-kinesis-video-archived-media 188 + , types-aiobotocore-kinesis-video-media 189 + , types-aiobotocore-kinesis-video-signaling 190 + , types-aiobotocore-kinesis-video-webrtc-storage 191 + , types-aiobotocore-kinesisanalytics 192 + , types-aiobotocore-kinesisanalyticsv2 193 + , types-aiobotocore-kinesisvideo 194 + , types-aiobotocore-kms 195 + , types-aiobotocore-lakeformation 196 + , types-aiobotocore-lambda 197 + , types-aiobotocore-lex-models 198 + , types-aiobotocore-lex-runtime 199 + , types-aiobotocore-lexv2-models 200 + , types-aiobotocore-lexv2-runtime 201 + , types-aiobotocore-license-manager 202 + , types-aiobotocore-license-manager-linux-subscriptions 203 + , types-aiobotocore-license-manager-user-subscriptions 204 + , types-aiobotocore-lightsail 205 + , types-aiobotocore-location 206 + , types-aiobotocore-logs 207 + , types-aiobotocore-lookoutequipment 208 + , types-aiobotocore-lookoutmetrics 209 + , types-aiobotocore-lookoutvision 210 + , types-aiobotocore-m2 211 + , types-aiobotocore-machinelearning 212 + , types-aiobotocore-macie 213 + , types-aiobotocore-macie2 214 + , types-aiobotocore-managedblockchain 215 + , types-aiobotocore-managedblockchain-query 216 + , types-aiobotocore-marketplace-catalog 217 + , types-aiobotocore-marketplace-entitlement 218 + , types-aiobotocore-marketplacecommerceanalytics 219 + , types-aiobotocore-mediaconnect 220 + , types-aiobotocore-mediaconvert 221 + , types-aiobotocore-medialive 222 + , types-aiobotocore-mediapackage 223 + , types-aiobotocore-mediapackage-vod 224 + , types-aiobotocore-mediapackagev2 225 + , types-aiobotocore-mediastore 226 + , types-aiobotocore-mediastore-data 227 + , types-aiobotocore-mediatailor 228 + , types-aiobotocore-medical-imaging 229 + , types-aiobotocore-memorydb 230 + , types-aiobotocore-meteringmarketplace 231 + , types-aiobotocore-mgh 232 + , types-aiobotocore-mgn 233 + , types-aiobotocore-migration-hub-refactor-spaces 234 + , types-aiobotocore-migrationhub-config 235 + , types-aiobotocore-migrationhuborchestrator 236 + , types-aiobotocore-migrationhubstrategy 237 + , types-aiobotocore-mobile 238 + , types-aiobotocore-mq 239 + , types-aiobotocore-mturk 240 + , types-aiobotocore-mwaa 241 + , types-aiobotocore-neptune 242 + , types-aiobotocore-network-firewall 243 + , types-aiobotocore-networkmanager 244 + , types-aiobotocore-nimble 245 + , types-aiobotocore-oam 246 + , types-aiobotocore-omics 247 + , types-aiobotocore-opensearch 248 + , types-aiobotocore-opensearchserverless 249 + , types-aiobotocore-opsworks 250 + , types-aiobotocore-opsworkscm 251 + , types-aiobotocore-organizations 252 + , types-aiobotocore-osis 253 + , types-aiobotocore-outposts 254 + , types-aiobotocore-panorama 255 + , types-aiobotocore-payment-cryptography 256 + , types-aiobotocore-payment-cryptography-data 257 + , types-aiobotocore-personalize 258 + , types-aiobotocore-personalize-events 259 + , types-aiobotocore-personalize-runtime 260 + , types-aiobotocore-pi 261 + , types-aiobotocore-pinpoint 262 + , types-aiobotocore-pinpoint-email 263 + , types-aiobotocore-pinpoint-sms-voice 264 + , types-aiobotocore-pinpoint-sms-voice-v2 265 + , types-aiobotocore-pipes 266 + , types-aiobotocore-polly 267 + , types-aiobotocore-pricing 268 + , types-aiobotocore-privatenetworks 269 + , types-aiobotocore-proton 270 + , types-aiobotocore-qldb 271 + , types-aiobotocore-qldb-session 272 + , types-aiobotocore-quicksight 273 + , types-aiobotocore-ram 274 + , types-aiobotocore-rbin 275 + , types-aiobotocore-rds 276 + , types-aiobotocore-rds-data 277 + , types-aiobotocore-redshift 278 + , types-aiobotocore-redshift-data 279 + , types-aiobotocore-redshift-serverless 280 + , types-aiobotocore-rekognition 281 + , types-aiobotocore-resiliencehub 282 + , types-aiobotocore-resource-explorer-2 283 + , types-aiobotocore-resource-groups 284 + , types-aiobotocore-resourcegroupstaggingapi 285 + , types-aiobotocore-robomaker 286 + , types-aiobotocore-rolesanywhere 287 + , types-aiobotocore-route53 288 + , types-aiobotocore-route53-recovery-cluster 289 + , types-aiobotocore-route53-recovery-control-config 290 + , types-aiobotocore-route53-recovery-readiness 291 + , types-aiobotocore-route53domains 292 + , types-aiobotocore-route53resolver 293 + , types-aiobotocore-rum 294 + , types-aiobotocore-s3 295 + , types-aiobotocore-s3control 296 + , types-aiobotocore-s3outposts 297 + , types-aiobotocore-sagemaker 298 + , types-aiobotocore-sagemaker-a2i-runtime 299 + , types-aiobotocore-sagemaker-edge 300 + , types-aiobotocore-sagemaker-featurestore-runtime 301 + , types-aiobotocore-sagemaker-geospatial 302 + , types-aiobotocore-sagemaker-metrics 303 + , types-aiobotocore-sagemaker-runtime 304 + , types-aiobotocore-savingsplans 305 + , types-aiobotocore-scheduler 306 + , types-aiobotocore-schemas 307 + , types-aiobotocore-sdb 308 + , types-aiobotocore-secretsmanager 309 + , types-aiobotocore-securityhub 310 + , types-aiobotocore-securitylake 311 + , types-aiobotocore-serverlessrepo 312 + , types-aiobotocore-service-quotas 313 + , types-aiobotocore-servicecatalog 314 + , types-aiobotocore-servicecatalog-appregistry 315 + , types-aiobotocore-servicediscovery 316 + , types-aiobotocore-ses 317 + , types-aiobotocore-sesv2 318 + , types-aiobotocore-shield 319 + , types-aiobotocore-signer 320 + , types-aiobotocore-simspaceweaver 321 + , types-aiobotocore-sms 322 + , types-aiobotocore-sms-voice 323 + , types-aiobotocore-snow-device-management 324 + , types-aiobotocore-snowball 325 + , types-aiobotocore-sns 326 + , types-aiobotocore-sqs 327 + , types-aiobotocore-ssm 328 + , types-aiobotocore-ssm-contacts 329 + , types-aiobotocore-ssm-incidents 330 + , types-aiobotocore-ssm-sap 331 + , types-aiobotocore-sso 332 + , types-aiobotocore-sso-admin 333 + , types-aiobotocore-sso-oidc 334 + , types-aiobotocore-stepfunctions 335 + , types-aiobotocore-storagegateway 336 + , types-aiobotocore-sts 337 + , types-aiobotocore-support 338 + , types-aiobotocore-support-app 339 + , types-aiobotocore-swf 340 + , types-aiobotocore-synthetics 341 + , types-aiobotocore-textract 342 + , types-aiobotocore-timestream-query 343 + , types-aiobotocore-timestream-write 344 + , types-aiobotocore-tnb 345 + , types-aiobotocore-transcribe 346 + , types-aiobotocore-transfer 347 + , types-aiobotocore-translate 348 + , types-aiobotocore-verifiedpermissions 349 + , types-aiobotocore-voice-id 350 + , types-aiobotocore-vpc-lattice 351 + , types-aiobotocore-waf 352 + , types-aiobotocore-waf-regional 353 + , types-aiobotocore-wafv2 354 + , types-aiobotocore-wellarchitected 355 + , types-aiobotocore-wisdom 356 + , types-aiobotocore-workdocs 357 + , types-aiobotocore-worklink 358 + , types-aiobotocore-workmail 359 + , types-aiobotocore-workmailmessageflow 360 + , types-aiobotocore-workspaces 361 + , types-aiobotocore-workspaces-web 362 + , types-aiobotocore-xray 363 + }: 364 + 365 + buildPythonPackage rec { 366 + pname = "types-aiobotocore"; 367 + version = "2.6.0"; 368 + pyproject = true; 369 + 370 + src = fetchPypi { 371 + inherit pname version; 372 + hash = "sha256-GF3YDuyhnEx0JpOxU/tRAnFu+98p0TF5NCU1CXnR2bE="; 373 + }; 374 + 375 + nativeBuildInputs = [ 376 + setuptools 377 + wheel 378 + ]; 379 + 380 + propagatedBuildInputs = [ 381 + botocore-stubs 382 + typing-extensions 383 + ]; 384 + 385 + passthru.optional-dependencies = { 386 + accessanalyzer = [ 387 + types-aiobotocore-accessanalyzer 388 + ]; 389 + account = [ 390 + types-aiobotocore-account 391 + ]; 392 + acm = [ 393 + types-aiobotocore-acm 394 + ]; 395 + acm-pca = [ 396 + types-aiobotocore-acm-pca 397 + ]; 398 + aiobotocore = [ 399 + aiobotocore 400 + botocore 401 + ]; 402 + alexaforbusiness = [ 403 + types-aiobotocore-alexaforbusiness 404 + ]; 405 + all = [ 406 + types-aiobotocore-accessanalyzer 407 + types-aiobotocore-account 408 + types-aiobotocore-acm 409 + types-aiobotocore-acm-pca 410 + types-aiobotocore-alexaforbusiness 411 + types-aiobotocore-amp 412 + types-aiobotocore-amplify 413 + types-aiobotocore-amplifybackend 414 + types-aiobotocore-amplifyuibuilder 415 + types-aiobotocore-apigateway 416 + types-aiobotocore-apigatewaymanagementapi 417 + types-aiobotocore-apigatewayv2 418 + types-aiobotocore-appconfig 419 + types-aiobotocore-appconfigdata 420 + types-aiobotocore-appfabric 421 + types-aiobotocore-appflow 422 + types-aiobotocore-appintegrations 423 + types-aiobotocore-application-autoscaling 424 + types-aiobotocore-application-insights 425 + types-aiobotocore-applicationcostprofiler 426 + types-aiobotocore-appmesh 427 + types-aiobotocore-apprunner 428 + types-aiobotocore-appstream 429 + types-aiobotocore-appsync 430 + types-aiobotocore-arc-zonal-shift 431 + types-aiobotocore-athena 432 + types-aiobotocore-auditmanager 433 + types-aiobotocore-autoscaling 434 + types-aiobotocore-autoscaling-plans 435 + types-aiobotocore-backup 436 + types-aiobotocore-backup-gateway 437 + types-aiobotocore-backupstorage 438 + types-aiobotocore-batch 439 + types-aiobotocore-billingconductor 440 + types-aiobotocore-braket 441 + types-aiobotocore-budgets 442 + types-aiobotocore-ce 443 + types-aiobotocore-chime 444 + types-aiobotocore-chime-sdk-identity 445 + types-aiobotocore-chime-sdk-media-pipelines 446 + types-aiobotocore-chime-sdk-meetings 447 + types-aiobotocore-chime-sdk-messaging 448 + types-aiobotocore-chime-sdk-voice 449 + types-aiobotocore-cleanrooms 450 + types-aiobotocore-cloud9 451 + types-aiobotocore-cloudcontrol 452 + types-aiobotocore-clouddirectory 453 + types-aiobotocore-cloudformation 454 + types-aiobotocore-cloudfront 455 + types-aiobotocore-cloudhsm 456 + types-aiobotocore-cloudhsmv2 457 + types-aiobotocore-cloudsearch 458 + types-aiobotocore-cloudsearchdomain 459 + types-aiobotocore-cloudtrail 460 + types-aiobotocore-cloudtrail-data 461 + types-aiobotocore-cloudwatch 462 + types-aiobotocore-codeartifact 463 + types-aiobotocore-codebuild 464 + types-aiobotocore-codecatalyst 465 + types-aiobotocore-codecommit 466 + types-aiobotocore-codedeploy 467 + types-aiobotocore-codeguru-reviewer 468 + types-aiobotocore-codeguru-security 469 + types-aiobotocore-codeguruprofiler 470 + types-aiobotocore-codepipeline 471 + types-aiobotocore-codestar 472 + types-aiobotocore-codestar-connections 473 + types-aiobotocore-codestar-notifications 474 + types-aiobotocore-cognito-identity 475 + types-aiobotocore-cognito-idp 476 + types-aiobotocore-cognito-sync 477 + types-aiobotocore-comprehend 478 + types-aiobotocore-comprehendmedical 479 + types-aiobotocore-compute-optimizer 480 + types-aiobotocore-config 481 + types-aiobotocore-connect 482 + types-aiobotocore-connect-contact-lens 483 + types-aiobotocore-connectcampaigns 484 + types-aiobotocore-connectcases 485 + types-aiobotocore-connectparticipant 486 + types-aiobotocore-controltower 487 + types-aiobotocore-cur 488 + types-aiobotocore-customer-profiles 489 + types-aiobotocore-databrew 490 + types-aiobotocore-dataexchange 491 + types-aiobotocore-datapipeline 492 + types-aiobotocore-datasync 493 + types-aiobotocore-dax 494 + types-aiobotocore-detective 495 + types-aiobotocore-devicefarm 496 + types-aiobotocore-devops-guru 497 + types-aiobotocore-directconnect 498 + types-aiobotocore-discovery 499 + types-aiobotocore-dlm 500 + types-aiobotocore-dms 501 + types-aiobotocore-docdb 502 + types-aiobotocore-docdb-elastic 503 + types-aiobotocore-drs 504 + types-aiobotocore-ds 505 + types-aiobotocore-dynamodb 506 + types-aiobotocore-dynamodbstreams 507 + types-aiobotocore-ebs 508 + types-aiobotocore-ec2 509 + types-aiobotocore-ec2-instance-connect 510 + types-aiobotocore-ecr 511 + types-aiobotocore-ecr-public 512 + types-aiobotocore-ecs 513 + types-aiobotocore-efs 514 + types-aiobotocore-eks 515 + types-aiobotocore-elastic-inference 516 + types-aiobotocore-elasticache 517 + types-aiobotocore-elasticbeanstalk 518 + types-aiobotocore-elastictranscoder 519 + types-aiobotocore-elb 520 + types-aiobotocore-elbv2 521 + types-aiobotocore-emr 522 + types-aiobotocore-emr-containers 523 + types-aiobotocore-emr-serverless 524 + types-aiobotocore-entityresolution 525 + types-aiobotocore-es 526 + types-aiobotocore-events 527 + types-aiobotocore-evidently 528 + types-aiobotocore-finspace 529 + types-aiobotocore-finspace-data 530 + types-aiobotocore-firehose 531 + types-aiobotocore-fis 532 + types-aiobotocore-fms 533 + types-aiobotocore-forecast 534 + types-aiobotocore-forecastquery 535 + types-aiobotocore-frauddetector 536 + types-aiobotocore-fsx 537 + types-aiobotocore-gamelift 538 + types-aiobotocore-gamesparks 539 + types-aiobotocore-glacier 540 + types-aiobotocore-globalaccelerator 541 + types-aiobotocore-glue 542 + types-aiobotocore-grafana 543 + types-aiobotocore-greengrass 544 + types-aiobotocore-greengrassv2 545 + types-aiobotocore-groundstation 546 + types-aiobotocore-guardduty 547 + types-aiobotocore-health 548 + types-aiobotocore-healthlake 549 + types-aiobotocore-honeycode 550 + types-aiobotocore-iam 551 + types-aiobotocore-identitystore 552 + types-aiobotocore-imagebuilder 553 + types-aiobotocore-importexport 554 + types-aiobotocore-inspector 555 + types-aiobotocore-inspector2 556 + types-aiobotocore-internetmonitor 557 + types-aiobotocore-iot 558 + types-aiobotocore-iot-data 559 + types-aiobotocore-iot-jobs-data 560 + types-aiobotocore-iot-roborunner 561 + types-aiobotocore-iot1click-devices 562 + types-aiobotocore-iot1click-projects 563 + types-aiobotocore-iotanalytics 564 + types-aiobotocore-iotdeviceadvisor 565 + types-aiobotocore-iotevents 566 + types-aiobotocore-iotevents-data 567 + types-aiobotocore-iotfleethub 568 + types-aiobotocore-iotfleetwise 569 + types-aiobotocore-iotsecuretunneling 570 + types-aiobotocore-iotsitewise 571 + types-aiobotocore-iotthingsgraph 572 + types-aiobotocore-iottwinmaker 573 + types-aiobotocore-iotwireless 574 + types-aiobotocore-ivs 575 + types-aiobotocore-ivs-realtime 576 + types-aiobotocore-ivschat 577 + types-aiobotocore-kafka 578 + types-aiobotocore-kafkaconnect 579 + types-aiobotocore-kendra 580 + types-aiobotocore-kendra-ranking 581 + types-aiobotocore-keyspaces 582 + types-aiobotocore-kinesis 583 + types-aiobotocore-kinesis-video-archived-media 584 + types-aiobotocore-kinesis-video-media 585 + types-aiobotocore-kinesis-video-signaling 586 + types-aiobotocore-kinesis-video-webrtc-storage 587 + types-aiobotocore-kinesisanalytics 588 + types-aiobotocore-kinesisanalyticsv2 589 + types-aiobotocore-kinesisvideo 590 + types-aiobotocore-kms 591 + types-aiobotocore-lakeformation 592 + types-aiobotocore-lambda 593 + types-aiobotocore-lex-models 594 + types-aiobotocore-lex-runtime 595 + types-aiobotocore-lexv2-models 596 + types-aiobotocore-lexv2-runtime 597 + types-aiobotocore-license-manager 598 + types-aiobotocore-license-manager-linux-subscriptions 599 + types-aiobotocore-license-manager-user-subscriptions 600 + types-aiobotocore-lightsail 601 + types-aiobotocore-location 602 + types-aiobotocore-logs 603 + types-aiobotocore-lookoutequipment 604 + types-aiobotocore-lookoutmetrics 605 + types-aiobotocore-lookoutvision 606 + types-aiobotocore-m2 607 + types-aiobotocore-machinelearning 608 + types-aiobotocore-macie 609 + types-aiobotocore-macie2 610 + types-aiobotocore-managedblockchain 611 + types-aiobotocore-managedblockchain-query 612 + types-aiobotocore-marketplace-catalog 613 + types-aiobotocore-marketplace-entitlement 614 + types-aiobotocore-marketplacecommerceanalytics 615 + types-aiobotocore-mediaconnect 616 + types-aiobotocore-mediaconvert 617 + types-aiobotocore-medialive 618 + types-aiobotocore-mediapackage 619 + types-aiobotocore-mediapackage-vod 620 + types-aiobotocore-mediapackagev2 621 + types-aiobotocore-mediastore 622 + types-aiobotocore-mediastore-data 623 + types-aiobotocore-mediatailor 624 + types-aiobotocore-medical-imaging 625 + types-aiobotocore-memorydb 626 + types-aiobotocore-meteringmarketplace 627 + types-aiobotocore-mgh 628 + types-aiobotocore-mgn 629 + types-aiobotocore-migration-hub-refactor-spaces 630 + types-aiobotocore-migrationhub-config 631 + types-aiobotocore-migrationhuborchestrator 632 + types-aiobotocore-migrationhubstrategy 633 + types-aiobotocore-mobile 634 + types-aiobotocore-mq 635 + types-aiobotocore-mturk 636 + types-aiobotocore-mwaa 637 + types-aiobotocore-neptune 638 + types-aiobotocore-network-firewall 639 + types-aiobotocore-networkmanager 640 + types-aiobotocore-nimble 641 + types-aiobotocore-oam 642 + types-aiobotocore-omics 643 + types-aiobotocore-opensearch 644 + types-aiobotocore-opensearchserverless 645 + types-aiobotocore-opsworks 646 + types-aiobotocore-opsworkscm 647 + types-aiobotocore-organizations 648 + types-aiobotocore-osis 649 + types-aiobotocore-outposts 650 + types-aiobotocore-panorama 651 + types-aiobotocore-payment-cryptography 652 + types-aiobotocore-payment-cryptography-data 653 + types-aiobotocore-personalize 654 + types-aiobotocore-personalize-events 655 + types-aiobotocore-personalize-runtime 656 + types-aiobotocore-pi 657 + types-aiobotocore-pinpoint 658 + types-aiobotocore-pinpoint-email 659 + types-aiobotocore-pinpoint-sms-voice 660 + types-aiobotocore-pinpoint-sms-voice-v2 661 + types-aiobotocore-pipes 662 + types-aiobotocore-polly 663 + types-aiobotocore-pricing 664 + types-aiobotocore-privatenetworks 665 + types-aiobotocore-proton 666 + types-aiobotocore-qldb 667 + types-aiobotocore-qldb-session 668 + types-aiobotocore-quicksight 669 + types-aiobotocore-ram 670 + types-aiobotocore-rbin 671 + types-aiobotocore-rds 672 + types-aiobotocore-rds-data 673 + types-aiobotocore-redshift 674 + types-aiobotocore-redshift-data 675 + types-aiobotocore-redshift-serverless 676 + types-aiobotocore-rekognition 677 + types-aiobotocore-resiliencehub 678 + types-aiobotocore-resource-explorer-2 679 + types-aiobotocore-resource-groups 680 + types-aiobotocore-resourcegroupstaggingapi 681 + types-aiobotocore-robomaker 682 + types-aiobotocore-rolesanywhere 683 + types-aiobotocore-route53 684 + types-aiobotocore-route53-recovery-cluster 685 + types-aiobotocore-route53-recovery-control-config 686 + types-aiobotocore-route53-recovery-readiness 687 + types-aiobotocore-route53domains 688 + types-aiobotocore-route53resolver 689 + types-aiobotocore-rum 690 + types-aiobotocore-s3 691 + types-aiobotocore-s3control 692 + types-aiobotocore-s3outposts 693 + types-aiobotocore-sagemaker 694 + types-aiobotocore-sagemaker-a2i-runtime 695 + types-aiobotocore-sagemaker-edge 696 + types-aiobotocore-sagemaker-featurestore-runtime 697 + types-aiobotocore-sagemaker-geospatial 698 + types-aiobotocore-sagemaker-metrics 699 + types-aiobotocore-sagemaker-runtime 700 + types-aiobotocore-savingsplans 701 + types-aiobotocore-scheduler 702 + types-aiobotocore-schemas 703 + types-aiobotocore-sdb 704 + types-aiobotocore-secretsmanager 705 + types-aiobotocore-securityhub 706 + types-aiobotocore-securitylake 707 + types-aiobotocore-serverlessrepo 708 + types-aiobotocore-service-quotas 709 + types-aiobotocore-servicecatalog 710 + types-aiobotocore-servicecatalog-appregistry 711 + types-aiobotocore-servicediscovery 712 + types-aiobotocore-ses 713 + types-aiobotocore-sesv2 714 + types-aiobotocore-shield 715 + types-aiobotocore-signer 716 + types-aiobotocore-simspaceweaver 717 + types-aiobotocore-sms 718 + types-aiobotocore-sms-voice 719 + types-aiobotocore-snow-device-management 720 + types-aiobotocore-snowball 721 + types-aiobotocore-sns 722 + types-aiobotocore-sqs 723 + types-aiobotocore-ssm 724 + types-aiobotocore-ssm-contacts 725 + types-aiobotocore-ssm-incidents 726 + types-aiobotocore-ssm-sap 727 + types-aiobotocore-sso 728 + types-aiobotocore-sso-admin 729 + types-aiobotocore-sso-oidc 730 + types-aiobotocore-stepfunctions 731 + types-aiobotocore-storagegateway 732 + types-aiobotocore-sts 733 + types-aiobotocore-support 734 + types-aiobotocore-support-app 735 + types-aiobotocore-swf 736 + types-aiobotocore-synthetics 737 + types-aiobotocore-textract 738 + types-aiobotocore-timestream-query 739 + types-aiobotocore-timestream-write 740 + types-aiobotocore-tnb 741 + types-aiobotocore-transcribe 742 + types-aiobotocore-transfer 743 + types-aiobotocore-translate 744 + types-aiobotocore-verifiedpermissions 745 + types-aiobotocore-voice-id 746 + types-aiobotocore-vpc-lattice 747 + types-aiobotocore-waf 748 + types-aiobotocore-waf-regional 749 + types-aiobotocore-wafv2 750 + types-aiobotocore-wellarchitected 751 + types-aiobotocore-wisdom 752 + types-aiobotocore-workdocs 753 + types-aiobotocore-worklink 754 + types-aiobotocore-workmail 755 + types-aiobotocore-workmailmessageflow 756 + types-aiobotocore-workspaces 757 + types-aiobotocore-workspaces-web 758 + types-aiobotocore-xray 759 + ]; 760 + amp = [ 761 + types-aiobotocore-amp 762 + ]; 763 + amplify = [ 764 + types-aiobotocore-amplify 765 + ]; 766 + amplifybackend = [ 767 + types-aiobotocore-amplifybackend 768 + ]; 769 + amplifyuibuilder = [ 770 + types-aiobotocore-amplifyuibuilder 771 + ]; 772 + apigateway = [ 773 + types-aiobotocore-apigateway 774 + ]; 775 + apigatewaymanagementapi = [ 776 + types-aiobotocore-apigatewaymanagementapi 777 + ]; 778 + apigatewayv2 = [ 779 + types-aiobotocore-apigatewayv2 780 + ]; 781 + appconfig = [ 782 + types-aiobotocore-appconfig 783 + ]; 784 + appconfigdata = [ 785 + types-aiobotocore-appconfigdata 786 + ]; 787 + appfabric = [ 788 + types-aiobotocore-appfabric 789 + ]; 790 + appflow = [ 791 + types-aiobotocore-appflow 792 + ]; 793 + appintegrations = [ 794 + types-aiobotocore-appintegrations 795 + ]; 796 + application-autoscaling = [ 797 + types-aiobotocore-application-autoscaling 798 + ]; 799 + application-insights = [ 800 + types-aiobotocore-application-insights 801 + ]; 802 + applicationcostprofiler = [ 803 + types-aiobotocore-applicationcostprofiler 804 + ]; 805 + appmesh = [ 806 + types-aiobotocore-appmesh 807 + ]; 808 + apprunner = [ 809 + types-aiobotocore-apprunner 810 + ]; 811 + appstream = [ 812 + types-aiobotocore-appstream 813 + ]; 814 + appsync = [ 815 + types-aiobotocore-appsync 816 + ]; 817 + arc-zonal-shift = [ 818 + types-aiobotocore-arc-zonal-shift 819 + ]; 820 + athena = [ 821 + types-aiobotocore-athena 822 + ]; 823 + auditmanager = [ 824 + types-aiobotocore-auditmanager 825 + ]; 826 + autoscaling = [ 827 + types-aiobotocore-autoscaling 828 + ]; 829 + autoscaling-plans = [ 830 + types-aiobotocore-autoscaling-plans 831 + ]; 832 + backup = [ 833 + types-aiobotocore-backup 834 + ]; 835 + backup-gateway = [ 836 + types-aiobotocore-backup-gateway 837 + ]; 838 + backupstorage = [ 839 + types-aiobotocore-backupstorage 840 + ]; 841 + batch = [ 842 + types-aiobotocore-batch 843 + ]; 844 + billingconductor = [ 845 + types-aiobotocore-billingconductor 846 + ]; 847 + braket = [ 848 + types-aiobotocore-braket 849 + ]; 850 + budgets = [ 851 + types-aiobotocore-budgets 852 + ]; 853 + ce = [ 854 + types-aiobotocore-ce 855 + ]; 856 + chime = [ 857 + types-aiobotocore-chime 858 + ]; 859 + chime-sdk-identity = [ 860 + types-aiobotocore-chime-sdk-identity 861 + ]; 862 + chime-sdk-media-pipelines = [ 863 + types-aiobotocore-chime-sdk-media-pipelines 864 + ]; 865 + chime-sdk-meetings = [ 866 + types-aiobotocore-chime-sdk-meetings 867 + ]; 868 + chime-sdk-messaging = [ 869 + types-aiobotocore-chime-sdk-messaging 870 + ]; 871 + chime-sdk-voice = [ 872 + types-aiobotocore-chime-sdk-voice 873 + ]; 874 + cleanrooms = [ 875 + types-aiobotocore-cleanrooms 876 + ]; 877 + cloud9 = [ 878 + types-aiobotocore-cloud9 879 + ]; 880 + cloudcontrol = [ 881 + types-aiobotocore-cloudcontrol 882 + ]; 883 + clouddirectory = [ 884 + types-aiobotocore-clouddirectory 885 + ]; 886 + cloudformation = [ 887 + types-aiobotocore-cloudformation 888 + ]; 889 + cloudfront = [ 890 + types-aiobotocore-cloudfront 891 + ]; 892 + cloudhsm = [ 893 + types-aiobotocore-cloudhsm 894 + ]; 895 + cloudhsmv2 = [ 896 + types-aiobotocore-cloudhsmv2 897 + ]; 898 + cloudsearch = [ 899 + types-aiobotocore-cloudsearch 900 + ]; 901 + cloudsearchdomain = [ 902 + types-aiobotocore-cloudsearchdomain 903 + ]; 904 + cloudtrail = [ 905 + types-aiobotocore-cloudtrail 906 + ]; 907 + cloudtrail-data = [ 908 + types-aiobotocore-cloudtrail-data 909 + ]; 910 + cloudwatch = [ 911 + types-aiobotocore-cloudwatch 912 + ]; 913 + codeartifact = [ 914 + types-aiobotocore-codeartifact 915 + ]; 916 + codebuild = [ 917 + types-aiobotocore-codebuild 918 + ]; 919 + codecatalyst = [ 920 + types-aiobotocore-codecatalyst 921 + ]; 922 + codecommit = [ 923 + types-aiobotocore-codecommit 924 + ]; 925 + codedeploy = [ 926 + types-aiobotocore-codedeploy 927 + ]; 928 + codeguru-reviewer = [ 929 + types-aiobotocore-codeguru-reviewer 930 + ]; 931 + codeguru-security = [ 932 + types-aiobotocore-codeguru-security 933 + ]; 934 + codeguruprofiler = [ 935 + types-aiobotocore-codeguruprofiler 936 + ]; 937 + codepipeline = [ 938 + types-aiobotocore-codepipeline 939 + ]; 940 + codestar = [ 941 + types-aiobotocore-codestar 942 + ]; 943 + codestar-connections = [ 944 + types-aiobotocore-codestar-connections 945 + ]; 946 + codestar-notifications = [ 947 + types-aiobotocore-codestar-notifications 948 + ]; 949 + cognito-identity = [ 950 + types-aiobotocore-cognito-identity 951 + ]; 952 + cognito-idp = [ 953 + types-aiobotocore-cognito-idp 954 + ]; 955 + cognito-sync = [ 956 + types-aiobotocore-cognito-sync 957 + ]; 958 + comprehend = [ 959 + types-aiobotocore-comprehend 960 + ]; 961 + comprehendmedical = [ 962 + types-aiobotocore-comprehendmedical 963 + ]; 964 + compute-optimizer = [ 965 + types-aiobotocore-compute-optimizer 966 + ]; 967 + config = [ 968 + types-aiobotocore-config 969 + ]; 970 + connect = [ 971 + types-aiobotocore-connect 972 + ]; 973 + connect-contact-lens = [ 974 + types-aiobotocore-connect-contact-lens 975 + ]; 976 + connectcampaigns = [ 977 + types-aiobotocore-connectcampaigns 978 + ]; 979 + connectcases = [ 980 + types-aiobotocore-connectcases 981 + ]; 982 + connectparticipant = [ 983 + types-aiobotocore-connectparticipant 984 + ]; 985 + controltower = [ 986 + types-aiobotocore-controltower 987 + ]; 988 + cur = [ 989 + types-aiobotocore-cur 990 + ]; 991 + customer-profiles = [ 992 + types-aiobotocore-customer-profiles 993 + ]; 994 + databrew = [ 995 + types-aiobotocore-databrew 996 + ]; 997 + dataexchange = [ 998 + types-aiobotocore-dataexchange 999 + ]; 1000 + datapipeline = [ 1001 + types-aiobotocore-datapipeline 1002 + ]; 1003 + datasync = [ 1004 + types-aiobotocore-datasync 1005 + ]; 1006 + dax = [ 1007 + types-aiobotocore-dax 1008 + ]; 1009 + detective = [ 1010 + types-aiobotocore-detective 1011 + ]; 1012 + devicefarm = [ 1013 + types-aiobotocore-devicefarm 1014 + ]; 1015 + devops-guru = [ 1016 + types-aiobotocore-devops-guru 1017 + ]; 1018 + directconnect = [ 1019 + types-aiobotocore-directconnect 1020 + ]; 1021 + discovery = [ 1022 + types-aiobotocore-discovery 1023 + ]; 1024 + dlm = [ 1025 + types-aiobotocore-dlm 1026 + ]; 1027 + dms = [ 1028 + types-aiobotocore-dms 1029 + ]; 1030 + docdb = [ 1031 + types-aiobotocore-docdb 1032 + ]; 1033 + docdb-elastic = [ 1034 + types-aiobotocore-docdb-elastic 1035 + ]; 1036 + drs = [ 1037 + types-aiobotocore-drs 1038 + ]; 1039 + ds = [ 1040 + types-aiobotocore-ds 1041 + ]; 1042 + dynamodb = [ 1043 + types-aiobotocore-dynamodb 1044 + ]; 1045 + dynamodbstreams = [ 1046 + types-aiobotocore-dynamodbstreams 1047 + ]; 1048 + ebs = [ 1049 + types-aiobotocore-ebs 1050 + ]; 1051 + ec2 = [ 1052 + types-aiobotocore-ec2 1053 + ]; 1054 + ec2-instance-connect = [ 1055 + types-aiobotocore-ec2-instance-connect 1056 + ]; 1057 + ecr = [ 1058 + types-aiobotocore-ecr 1059 + ]; 1060 + ecr-public = [ 1061 + types-aiobotocore-ecr-public 1062 + ]; 1063 + ecs = [ 1064 + types-aiobotocore-ecs 1065 + ]; 1066 + efs = [ 1067 + types-aiobotocore-efs 1068 + ]; 1069 + eks = [ 1070 + types-aiobotocore-eks 1071 + ]; 1072 + elastic-inference = [ 1073 + types-aiobotocore-elastic-inference 1074 + ]; 1075 + elasticache = [ 1076 + types-aiobotocore-elasticache 1077 + ]; 1078 + elasticbeanstalk = [ 1079 + types-aiobotocore-elasticbeanstalk 1080 + ]; 1081 + elastictranscoder = [ 1082 + types-aiobotocore-elastictranscoder 1083 + ]; 1084 + elb = [ 1085 + types-aiobotocore-elb 1086 + ]; 1087 + elbv2 = [ 1088 + types-aiobotocore-elbv2 1089 + ]; 1090 + emr = [ 1091 + types-aiobotocore-emr 1092 + ]; 1093 + emr-containers = [ 1094 + types-aiobotocore-emr-containers 1095 + ]; 1096 + emr-serverless = [ 1097 + types-aiobotocore-emr-serverless 1098 + ]; 1099 + entityresolution = [ 1100 + types-aiobotocore-entityresolution 1101 + ]; 1102 + es = [ 1103 + types-aiobotocore-es 1104 + ]; 1105 + essential = [ 1106 + types-aiobotocore-cloudformation 1107 + types-aiobotocore-dynamodb 1108 + types-aiobotocore-ec2 1109 + types-aiobotocore-lambda 1110 + types-aiobotocore-rds 1111 + types-aiobotocore-s3 1112 + types-aiobotocore-sqs 1113 + ]; 1114 + events = [ 1115 + types-aiobotocore-events 1116 + ]; 1117 + evidently = [ 1118 + types-aiobotocore-evidently 1119 + ]; 1120 + finspace = [ 1121 + types-aiobotocore-finspace 1122 + ]; 1123 + finspace-data = [ 1124 + types-aiobotocore-finspace-data 1125 + ]; 1126 + firehose = [ 1127 + types-aiobotocore-firehose 1128 + ]; 1129 + fis = [ 1130 + types-aiobotocore-fis 1131 + ]; 1132 + fms = [ 1133 + types-aiobotocore-fms 1134 + ]; 1135 + forecast = [ 1136 + types-aiobotocore-forecast 1137 + ]; 1138 + forecastquery = [ 1139 + types-aiobotocore-forecastquery 1140 + ]; 1141 + frauddetector = [ 1142 + types-aiobotocore-frauddetector 1143 + ]; 1144 + fsx = [ 1145 + types-aiobotocore-fsx 1146 + ]; 1147 + gamelift = [ 1148 + types-aiobotocore-gamelift 1149 + ]; 1150 + gamesparks = [ 1151 + types-aiobotocore-gamesparks 1152 + ]; 1153 + glacier = [ 1154 + types-aiobotocore-glacier 1155 + ]; 1156 + globalaccelerator = [ 1157 + types-aiobotocore-globalaccelerator 1158 + ]; 1159 + glue = [ 1160 + types-aiobotocore-glue 1161 + ]; 1162 + grafana = [ 1163 + types-aiobotocore-grafana 1164 + ]; 1165 + greengrass = [ 1166 + types-aiobotocore-greengrass 1167 + ]; 1168 + greengrassv2 = [ 1169 + types-aiobotocore-greengrassv2 1170 + ]; 1171 + groundstation = [ 1172 + types-aiobotocore-groundstation 1173 + ]; 1174 + guardduty = [ 1175 + types-aiobotocore-guardduty 1176 + ]; 1177 + health = [ 1178 + types-aiobotocore-health 1179 + ]; 1180 + healthlake = [ 1181 + types-aiobotocore-healthlake 1182 + ]; 1183 + honeycode = [ 1184 + types-aiobotocore-honeycode 1185 + ]; 1186 + iam = [ 1187 + types-aiobotocore-iam 1188 + ]; 1189 + identitystore = [ 1190 + types-aiobotocore-identitystore 1191 + ]; 1192 + imagebuilder = [ 1193 + types-aiobotocore-imagebuilder 1194 + ]; 1195 + importexport = [ 1196 + types-aiobotocore-importexport 1197 + ]; 1198 + inspector = [ 1199 + types-aiobotocore-inspector 1200 + ]; 1201 + inspector2 = [ 1202 + types-aiobotocore-inspector2 1203 + ]; 1204 + internetmonitor = [ 1205 + types-aiobotocore-internetmonitor 1206 + ]; 1207 + iot = [ 1208 + types-aiobotocore-iot 1209 + ]; 1210 + iot-data = [ 1211 + types-aiobotocore-iot-data 1212 + ]; 1213 + iot-jobs-data = [ 1214 + types-aiobotocore-iot-jobs-data 1215 + ]; 1216 + iot-roborunner = [ 1217 + types-aiobotocore-iot-roborunner 1218 + ]; 1219 + iot1click-devices = [ 1220 + types-aiobotocore-iot1click-devices 1221 + ]; 1222 + iot1click-projects = [ 1223 + types-aiobotocore-iot1click-projects 1224 + ]; 1225 + iotanalytics = [ 1226 + types-aiobotocore-iotanalytics 1227 + ]; 1228 + iotdeviceadvisor = [ 1229 + types-aiobotocore-iotdeviceadvisor 1230 + ]; 1231 + iotevents = [ 1232 + types-aiobotocore-iotevents 1233 + ]; 1234 + iotevents-data = [ 1235 + types-aiobotocore-iotevents-data 1236 + ]; 1237 + iotfleethub = [ 1238 + types-aiobotocore-iotfleethub 1239 + ]; 1240 + iotfleetwise = [ 1241 + types-aiobotocore-iotfleetwise 1242 + ]; 1243 + iotsecuretunneling = [ 1244 + types-aiobotocore-iotsecuretunneling 1245 + ]; 1246 + iotsitewise = [ 1247 + types-aiobotocore-iotsitewise 1248 + ]; 1249 + iotthingsgraph = [ 1250 + types-aiobotocore-iotthingsgraph 1251 + ]; 1252 + iottwinmaker = [ 1253 + types-aiobotocore-iottwinmaker 1254 + ]; 1255 + iotwireless = [ 1256 + types-aiobotocore-iotwireless 1257 + ]; 1258 + ivs = [ 1259 + types-aiobotocore-ivs 1260 + ]; 1261 + ivs-realtime = [ 1262 + types-aiobotocore-ivs-realtime 1263 + ]; 1264 + ivschat = [ 1265 + types-aiobotocore-ivschat 1266 + ]; 1267 + kafka = [ 1268 + types-aiobotocore-kafka 1269 + ]; 1270 + kafkaconnect = [ 1271 + types-aiobotocore-kafkaconnect 1272 + ]; 1273 + kendra = [ 1274 + types-aiobotocore-kendra 1275 + ]; 1276 + kendra-ranking = [ 1277 + types-aiobotocore-kendra-ranking 1278 + ]; 1279 + keyspaces = [ 1280 + types-aiobotocore-keyspaces 1281 + ]; 1282 + kinesis = [ 1283 + types-aiobotocore-kinesis 1284 + ]; 1285 + kinesis-video-archived-media = [ 1286 + types-aiobotocore-kinesis-video-archived-media 1287 + ]; 1288 + kinesis-video-media = [ 1289 + types-aiobotocore-kinesis-video-media 1290 + ]; 1291 + kinesis-video-signaling = [ 1292 + types-aiobotocore-kinesis-video-signaling 1293 + ]; 1294 + kinesis-video-webrtc-storage = [ 1295 + types-aiobotocore-kinesis-video-webrtc-storage 1296 + ]; 1297 + kinesisanalytics = [ 1298 + types-aiobotocore-kinesisanalytics 1299 + ]; 1300 + kinesisanalyticsv2 = [ 1301 + types-aiobotocore-kinesisanalyticsv2 1302 + ]; 1303 + kinesisvideo = [ 1304 + types-aiobotocore-kinesisvideo 1305 + ]; 1306 + kms = [ 1307 + types-aiobotocore-kms 1308 + ]; 1309 + lakeformation = [ 1310 + types-aiobotocore-lakeformation 1311 + ]; 1312 + lambda = [ 1313 + types-aiobotocore-lambda 1314 + ]; 1315 + lex-models = [ 1316 + types-aiobotocore-lex-models 1317 + ]; 1318 + lex-runtime = [ 1319 + types-aiobotocore-lex-runtime 1320 + ]; 1321 + lexv2-models = [ 1322 + types-aiobotocore-lexv2-models 1323 + ]; 1324 + lexv2-runtime = [ 1325 + types-aiobotocore-lexv2-runtime 1326 + ]; 1327 + license-manager = [ 1328 + types-aiobotocore-license-manager 1329 + ]; 1330 + license-manager-linux-subscriptions = [ 1331 + types-aiobotocore-license-manager-linux-subscriptions 1332 + ]; 1333 + license-manager-user-subscriptions = [ 1334 + types-aiobotocore-license-manager-user-subscriptions 1335 + ]; 1336 + lightsail = [ 1337 + types-aiobotocore-lightsail 1338 + ]; 1339 + location = [ 1340 + types-aiobotocore-location 1341 + ]; 1342 + logs = [ 1343 + types-aiobotocore-logs 1344 + ]; 1345 + lookoutequipment = [ 1346 + types-aiobotocore-lookoutequipment 1347 + ]; 1348 + lookoutmetrics = [ 1349 + types-aiobotocore-lookoutmetrics 1350 + ]; 1351 + lookoutvision = [ 1352 + types-aiobotocore-lookoutvision 1353 + ]; 1354 + m2 = [ 1355 + types-aiobotocore-m2 1356 + ]; 1357 + machinelearning = [ 1358 + types-aiobotocore-machinelearning 1359 + ]; 1360 + macie = [ 1361 + types-aiobotocore-macie 1362 + ]; 1363 + macie2 = [ 1364 + types-aiobotocore-macie2 1365 + ]; 1366 + managedblockchain = [ 1367 + types-aiobotocore-managedblockchain 1368 + ]; 1369 + managedblockchain-query = [ 1370 + types-aiobotocore-managedblockchain-query 1371 + ]; 1372 + marketplace-catalog = [ 1373 + types-aiobotocore-marketplace-catalog 1374 + ]; 1375 + marketplace-entitlement = [ 1376 + types-aiobotocore-marketplace-entitlement 1377 + ]; 1378 + marketplacecommerceanalytics = [ 1379 + types-aiobotocore-marketplacecommerceanalytics 1380 + ]; 1381 + mediaconnect = [ 1382 + types-aiobotocore-mediaconnect 1383 + ]; 1384 + mediaconvert = [ 1385 + types-aiobotocore-mediaconvert 1386 + ]; 1387 + medialive = [ 1388 + types-aiobotocore-medialive 1389 + ]; 1390 + mediapackage = [ 1391 + types-aiobotocore-mediapackage 1392 + ]; 1393 + mediapackage-vod = [ 1394 + types-aiobotocore-mediapackage-vod 1395 + ]; 1396 + mediapackagev2 = [ 1397 + types-aiobotocore-mediapackagev2 1398 + ]; 1399 + mediastore = [ 1400 + types-aiobotocore-mediastore 1401 + ]; 1402 + mediastore-data = [ 1403 + types-aiobotocore-mediastore-data 1404 + ]; 1405 + mediatailor = [ 1406 + types-aiobotocore-mediatailor 1407 + ]; 1408 + medical-imaging = [ 1409 + types-aiobotocore-medical-imaging 1410 + ]; 1411 + memorydb = [ 1412 + types-aiobotocore-memorydb 1413 + ]; 1414 + meteringmarketplace = [ 1415 + types-aiobotocore-meteringmarketplace 1416 + ]; 1417 + mgh = [ 1418 + types-aiobotocore-mgh 1419 + ]; 1420 + mgn = [ 1421 + types-aiobotocore-mgn 1422 + ]; 1423 + migration-hub-refactor-spaces = [ 1424 + types-aiobotocore-migration-hub-refactor-spaces 1425 + ]; 1426 + migrationhub-config = [ 1427 + types-aiobotocore-migrationhub-config 1428 + ]; 1429 + migrationhuborchestrator = [ 1430 + types-aiobotocore-migrationhuborchestrator 1431 + ]; 1432 + migrationhubstrategy = [ 1433 + types-aiobotocore-migrationhubstrategy 1434 + ]; 1435 + mobile = [ 1436 + types-aiobotocore-mobile 1437 + ]; 1438 + mq = [ 1439 + types-aiobotocore-mq 1440 + ]; 1441 + mturk = [ 1442 + types-aiobotocore-mturk 1443 + ]; 1444 + mwaa = [ 1445 + types-aiobotocore-mwaa 1446 + ]; 1447 + neptune = [ 1448 + types-aiobotocore-neptune 1449 + ]; 1450 + network-firewall = [ 1451 + types-aiobotocore-network-firewall 1452 + ]; 1453 + networkmanager = [ 1454 + types-aiobotocore-networkmanager 1455 + ]; 1456 + nimble = [ 1457 + types-aiobotocore-nimble 1458 + ]; 1459 + oam = [ 1460 + types-aiobotocore-oam 1461 + ]; 1462 + omics = [ 1463 + types-aiobotocore-omics 1464 + ]; 1465 + opensearch = [ 1466 + types-aiobotocore-opensearch 1467 + ]; 1468 + opensearchserverless = [ 1469 + types-aiobotocore-opensearchserverless 1470 + ]; 1471 + opsworks = [ 1472 + types-aiobotocore-opsworks 1473 + ]; 1474 + opsworkscm = [ 1475 + types-aiobotocore-opsworkscm 1476 + ]; 1477 + organizations = [ 1478 + types-aiobotocore-organizations 1479 + ]; 1480 + osis = [ 1481 + types-aiobotocore-osis 1482 + ]; 1483 + outposts = [ 1484 + types-aiobotocore-outposts 1485 + ]; 1486 + panorama = [ 1487 + types-aiobotocore-panorama 1488 + ]; 1489 + payment-cryptography = [ 1490 + types-aiobotocore-payment-cryptography 1491 + ]; 1492 + payment-cryptography-data = [ 1493 + types-aiobotocore-payment-cryptography-data 1494 + ]; 1495 + personalize = [ 1496 + types-aiobotocore-personalize 1497 + ]; 1498 + personalize-events = [ 1499 + types-aiobotocore-personalize-events 1500 + ]; 1501 + personalize-runtime = [ 1502 + types-aiobotocore-personalize-runtime 1503 + ]; 1504 + pi = [ 1505 + types-aiobotocore-pi 1506 + ]; 1507 + pinpoint = [ 1508 + types-aiobotocore-pinpoint 1509 + ]; 1510 + pinpoint-email = [ 1511 + types-aiobotocore-pinpoint-email 1512 + ]; 1513 + pinpoint-sms-voice = [ 1514 + types-aiobotocore-pinpoint-sms-voice 1515 + ]; 1516 + pinpoint-sms-voice-v2 = [ 1517 + types-aiobotocore-pinpoint-sms-voice-v2 1518 + ]; 1519 + pipes = [ 1520 + types-aiobotocore-pipes 1521 + ]; 1522 + polly = [ 1523 + types-aiobotocore-polly 1524 + ]; 1525 + pricing = [ 1526 + types-aiobotocore-pricing 1527 + ]; 1528 + privatenetworks = [ 1529 + types-aiobotocore-privatenetworks 1530 + ]; 1531 + proton = [ 1532 + types-aiobotocore-proton 1533 + ]; 1534 + qldb = [ 1535 + types-aiobotocore-qldb 1536 + ]; 1537 + qldb-session = [ 1538 + types-aiobotocore-qldb-session 1539 + ]; 1540 + quicksight = [ 1541 + types-aiobotocore-quicksight 1542 + ]; 1543 + ram = [ 1544 + types-aiobotocore-ram 1545 + ]; 1546 + rbin = [ 1547 + types-aiobotocore-rbin 1548 + ]; 1549 + rds = [ 1550 + types-aiobotocore-rds 1551 + ]; 1552 + rds-data = [ 1553 + types-aiobotocore-rds-data 1554 + ]; 1555 + redshift = [ 1556 + types-aiobotocore-redshift 1557 + ]; 1558 + redshift-data = [ 1559 + types-aiobotocore-redshift-data 1560 + ]; 1561 + redshift-serverless = [ 1562 + types-aiobotocore-redshift-serverless 1563 + ]; 1564 + rekognition = [ 1565 + types-aiobotocore-rekognition 1566 + ]; 1567 + resiliencehub = [ 1568 + types-aiobotocore-resiliencehub 1569 + ]; 1570 + resource-explorer-2 = [ 1571 + types-aiobotocore-resource-explorer-2 1572 + ]; 1573 + resource-groups = [ 1574 + types-aiobotocore-resource-groups 1575 + ]; 1576 + resourcegroupstaggingapi = [ 1577 + types-aiobotocore-resourcegroupstaggingapi 1578 + ]; 1579 + robomaker = [ 1580 + types-aiobotocore-robomaker 1581 + ]; 1582 + rolesanywhere = [ 1583 + types-aiobotocore-rolesanywhere 1584 + ]; 1585 + route53 = [ 1586 + types-aiobotocore-route53 1587 + ]; 1588 + route53-recovery-cluster = [ 1589 + types-aiobotocore-route53-recovery-cluster 1590 + ]; 1591 + route53-recovery-control-config = [ 1592 + types-aiobotocore-route53-recovery-control-config 1593 + ]; 1594 + route53-recovery-readiness = [ 1595 + types-aiobotocore-route53-recovery-readiness 1596 + ]; 1597 + route53domains = [ 1598 + types-aiobotocore-route53domains 1599 + ]; 1600 + route53resolver = [ 1601 + types-aiobotocore-route53resolver 1602 + ]; 1603 + rum = [ 1604 + types-aiobotocore-rum 1605 + ]; 1606 + s3 = [ 1607 + types-aiobotocore-s3 1608 + ]; 1609 + s3control = [ 1610 + types-aiobotocore-s3control 1611 + ]; 1612 + s3outposts = [ 1613 + types-aiobotocore-s3outposts 1614 + ]; 1615 + sagemaker = [ 1616 + types-aiobotocore-sagemaker 1617 + ]; 1618 + sagemaker-a2i-runtime = [ 1619 + types-aiobotocore-sagemaker-a2i-runtime 1620 + ]; 1621 + sagemaker-edge = [ 1622 + types-aiobotocore-sagemaker-edge 1623 + ]; 1624 + sagemaker-featurestore-runtime = [ 1625 + types-aiobotocore-sagemaker-featurestore-runtime 1626 + ]; 1627 + sagemaker-geospatial = [ 1628 + types-aiobotocore-sagemaker-geospatial 1629 + ]; 1630 + sagemaker-metrics = [ 1631 + types-aiobotocore-sagemaker-metrics 1632 + ]; 1633 + sagemaker-runtime = [ 1634 + types-aiobotocore-sagemaker-runtime 1635 + ]; 1636 + savingsplans = [ 1637 + types-aiobotocore-savingsplans 1638 + ]; 1639 + scheduler = [ 1640 + types-aiobotocore-scheduler 1641 + ]; 1642 + schemas = [ 1643 + types-aiobotocore-schemas 1644 + ]; 1645 + sdb = [ 1646 + types-aiobotocore-sdb 1647 + ]; 1648 + secretsmanager = [ 1649 + types-aiobotocore-secretsmanager 1650 + ]; 1651 + securityhub = [ 1652 + types-aiobotocore-securityhub 1653 + ]; 1654 + securitylake = [ 1655 + types-aiobotocore-securitylake 1656 + ]; 1657 + serverlessrepo = [ 1658 + types-aiobotocore-serverlessrepo 1659 + ]; 1660 + service-quotas = [ 1661 + types-aiobotocore-service-quotas 1662 + ]; 1663 + servicecatalog = [ 1664 + types-aiobotocore-servicecatalog 1665 + ]; 1666 + servicecatalog-appregistry = [ 1667 + types-aiobotocore-servicecatalog-appregistry 1668 + ]; 1669 + servicediscovery = [ 1670 + types-aiobotocore-servicediscovery 1671 + ]; 1672 + ses = [ 1673 + types-aiobotocore-ses 1674 + ]; 1675 + sesv2 = [ 1676 + types-aiobotocore-sesv2 1677 + ]; 1678 + shield = [ 1679 + types-aiobotocore-shield 1680 + ]; 1681 + signer = [ 1682 + types-aiobotocore-signer 1683 + ]; 1684 + simspaceweaver = [ 1685 + types-aiobotocore-simspaceweaver 1686 + ]; 1687 + sms = [ 1688 + types-aiobotocore-sms 1689 + ]; 1690 + sms-voice = [ 1691 + types-aiobotocore-sms-voice 1692 + ]; 1693 + snow-device-management = [ 1694 + types-aiobotocore-snow-device-management 1695 + ]; 1696 + snowball = [ 1697 + types-aiobotocore-snowball 1698 + ]; 1699 + sns = [ 1700 + types-aiobotocore-sns 1701 + ]; 1702 + sqs = [ 1703 + types-aiobotocore-sqs 1704 + ]; 1705 + ssm = [ 1706 + types-aiobotocore-ssm 1707 + ]; 1708 + ssm-contacts = [ 1709 + types-aiobotocore-ssm-contacts 1710 + ]; 1711 + ssm-incidents = [ 1712 + types-aiobotocore-ssm-incidents 1713 + ]; 1714 + ssm-sap = [ 1715 + types-aiobotocore-ssm-sap 1716 + ]; 1717 + sso = [ 1718 + types-aiobotocore-sso 1719 + ]; 1720 + sso-admin = [ 1721 + types-aiobotocore-sso-admin 1722 + ]; 1723 + sso-oidc = [ 1724 + types-aiobotocore-sso-oidc 1725 + ]; 1726 + stepfunctions = [ 1727 + types-aiobotocore-stepfunctions 1728 + ]; 1729 + storagegateway = [ 1730 + types-aiobotocore-storagegateway 1731 + ]; 1732 + sts = [ 1733 + types-aiobotocore-sts 1734 + ]; 1735 + support = [ 1736 + types-aiobotocore-support 1737 + ]; 1738 + support-app = [ 1739 + types-aiobotocore-support-app 1740 + ]; 1741 + swf = [ 1742 + types-aiobotocore-swf 1743 + ]; 1744 + synthetics = [ 1745 + types-aiobotocore-synthetics 1746 + ]; 1747 + textract = [ 1748 + types-aiobotocore-textract 1749 + ]; 1750 + timestream-query = [ 1751 + types-aiobotocore-timestream-query 1752 + ]; 1753 + timestream-write = [ 1754 + types-aiobotocore-timestream-write 1755 + ]; 1756 + tnb = [ 1757 + types-aiobotocore-tnb 1758 + ]; 1759 + transcribe = [ 1760 + types-aiobotocore-transcribe 1761 + ]; 1762 + transfer = [ 1763 + types-aiobotocore-transfer 1764 + ]; 1765 + translate = [ 1766 + types-aiobotocore-translate 1767 + ]; 1768 + verifiedpermissions = [ 1769 + types-aiobotocore-verifiedpermissions 1770 + ]; 1771 + voice-id = [ 1772 + types-aiobotocore-voice-id 1773 + ]; 1774 + vpc-lattice = [ 1775 + types-aiobotocore-vpc-lattice 1776 + ]; 1777 + waf = [ 1778 + types-aiobotocore-waf 1779 + ]; 1780 + waf-regional = [ 1781 + types-aiobotocore-waf-regional 1782 + ]; 1783 + wafv2 = [ 1784 + types-aiobotocore-wafv2 1785 + ]; 1786 + wellarchitected = [ 1787 + types-aiobotocore-wellarchitected 1788 + ]; 1789 + wisdom = [ 1790 + types-aiobotocore-wisdom 1791 + ]; 1792 + workdocs = [ 1793 + types-aiobotocore-workdocs 1794 + ]; 1795 + worklink = [ 1796 + types-aiobotocore-worklink 1797 + ]; 1798 + workmail = [ 1799 + types-aiobotocore-workmail 1800 + ]; 1801 + workmailmessageflow = [ 1802 + types-aiobotocore-workmailmessageflow 1803 + ]; 1804 + workspaces = [ 1805 + types-aiobotocore-workspaces 1806 + ]; 1807 + workspaces-web = [ 1808 + types-aiobotocore-workspaces-web 1809 + ]; 1810 + xray = [ 1811 + types-aiobotocore-xray 1812 + ]; 1813 + }; 1814 + 1815 + # Package has no tests 1816 + doCheck = false; 1817 + 1818 + meta = with lib; { 1819 + description = "Type annotations for aiobotocore generated with mypy-boto3-builder"; 1820 + homepage = "https://pypi.org/project/types-aiobotocore/"; 1821 + license = licenses.mit; 1822 + maintainers = with maintainers; [ mbalatsko ]; 1823 + }; 1824 + }
+2 -2
pkgs/development/python-modules/types-awscrt/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "types-awscrt"; 10 - version = "0.19.1"; 10 + version = "0.19.2"; 11 11 format = "pyproject"; 12 12 13 13 disabled = pythonOlder "3.7"; ··· 15 15 src = fetchPypi { 16 16 pname = "types_awscrt"; 17 17 inherit version; 18 - hash = "sha256-YYM6oUDnJKkJgCVhD0uM3j3PZbhCYx10RzePn1204f0="; 18 + hash = "sha256-2MN5QgunWx5DaH0SsLdypbsX81KFmivvaqjwq94SP1U="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/webrtc-noise-gain/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "webrtc-noise-gain"; 20 - version = "1.2.2"; 20 + version = "1.2.3"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "rhasspy"; 25 25 repo = "webrtc-noise-gain"; 26 26 rev = "v${version}"; 27 - hash = "sha256-yHuCa2To9/9kD+tLG239I1aepuhcPUV4a4O1TQtBPlE="; 27 + hash = "sha256-DFEtuO49zXNixLwBjQ/WOiARDhMAXVH+5hfc3eSdPIo="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/ypy-websocket/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "ypy-websocket"; 18 - version = "0.12.3"; 18 + version = "0.12.4"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.7"; ··· 24 24 owner = "y-crdt"; 25 25 repo = "ypy-websocket"; 26 26 rev = "refs/tags/v${version}"; 27 - hash = "sha256-gBLRjqsI2xx2z8qfaix4Gsm1rlNcjZ5g1PNVW7N4Q5k="; 27 + hash = "sha256-48x+MUhev9dErC003XOP3oGKd5uOghlBFgcR8Nm/0xs="; 28 28 }; 29 29 30 30 pythonRelaxDeps = [
+4 -4
pkgs/development/python-modules/zigpy-xbee/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "zigpy-xbee"; 14 - version = "0.18.2"; 14 + version = "0.18.3"; 15 15 # https://github.com/Martiusweb/asynctest/issues/152 16 16 # broken by upstream python bug with asynctest and 17 17 # is used exclusively by home-assistant with python 3.8 ··· 21 21 owner = "zigpy"; 22 22 repo = "zigpy-xbee"; 23 23 rev = "refs/tags/${version}"; 24 - hash = "sha256-aglKQWIMh0IyrcGt+PZVtzcgs88YbtZB7Tfg7hlB+18="; 24 + hash = "sha256-+qtbOC3rsse57kqd4RLl9EKXzru0vdgIIPSl1OQ652U="; 25 25 }; 26 26 27 27 buildInputs = [ ··· 36 36 ]; 37 37 38 38 disabledTests = [ 39 - # https://github.com/zigpy/zigpy-xbee/issues/126 40 - "test_form_network" 39 + # fixed in https://github.com/zigpy/zigpy-xbee/commit/f85233fc28ae01c08267965e99a29e43b00e1561 40 + "test_shutdown" 41 41 ]; 42 42 43 43 meta = with lib; {
+2 -2
pkgs/development/python-modules/zwave-js-server-python/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "zwave-js-server-python"; 13 - version = "0.51.3"; 13 + version = "0.52.1"; 14 14 format = "setuptools"; 15 15 16 16 disabled = pythonOlder "3.11"; ··· 19 19 owner = "home-assistant-libs"; 20 20 repo = pname; 21 21 rev = "refs/tags/${version}"; 22 - hash = "sha256-79INvk5WLuSki/kBU25hMHRxGk7FAznU89U+y3Eh+wI="; 22 + hash = "sha256-+zGLWti99mYTyPkSxiYgE5RqVvEr2PGt8vFwesjcquo="; 23 23 }; 24 24 25 25 propagatedBuildInputs = [
+5 -1
pkgs/development/tools/altair-graphql-client/default.nix
··· 1 - { lib, appimageTools, fetchurl }: 1 + { lib, appimageTools, makeWrapper, fetchurl }: 2 2 3 3 let 4 4 pname = "altair"; ··· 16 16 17 17 extraInstallCommands = '' 18 18 mv $out/bin/${pname}-${version} $out/bin/${pname} 19 + 20 + source "${makeWrapper}/nix-support/setup-hook" 21 + wrapProgram $out/bin/${pname} \ 22 + --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" 19 23 20 24 install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications 21 25 substituteInPlace $out/share/applications/${pname}.desktop \
+2 -2
pkgs/development/tools/analysis/checkov/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "checkov"; 25 - version = "2.4.59"; 25 + version = "2.5.4"; 26 26 format = "setuptools"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "bridgecrewio"; 30 30 repo = pname; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-/Qqh0f40JxHjIbt7rm4ZY7dTXGVMHrzkgNSjPJq8SLo="; 32 + hash = "sha256-Rp1Q486vbgZmWcxQNy1esRYl0HRWQonicNP0bYdqPtc="; 33 33 }; 34 34 35 35 patches = [
+2 -2
pkgs/development/tools/analysis/checkstyle/default.nix
··· 1 1 { lib, stdenvNoCC, fetchurl, makeBinaryWrapper, jre }: 2 2 3 3 stdenvNoCC.mkDerivation rec { 4 - version = "10.12.3"; 4 + version = "10.12.4"; 5 5 pname = "checkstyle"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; 9 - sha256 = "sha256-drJO3sZlh2G9f80cvPD41YjhHZt74lmV9bSIhUDrTKo="; 9 + sha256 = "sha256-ecWTB/4Lc7zgkQI6nN5VvKfRizeMEdyGUyL0fxiAHhk="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeBinaryWrapper ];
+3 -3
pkgs/development/tools/continuous-integration/cirrus-cli/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "cirrus-cli"; 9 - version = "0.104.0"; 9 + version = "0.105.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "cirruslabs"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-3X/VZirKSYD+y//e8Ft8f0D27vJWekdyUTmVvOgc5bQ="; 15 + sha256 = "sha256-F0T/4KUz0iU/THE8iRSdKe0Wo3HWQMYOd5vmbO61SzA="; 16 16 }; 17 17 18 - vendorHash = "sha256-0otC2+f0PMBZ+0Xiyq4kBd2YCJjAvDhThB3W9gIjHOY="; 18 + vendorHash = "sha256-+cxh3/TQqm6n7hUYhW2B3pdfdtzRuepZmLNSGVPA3H0="; 19 19 20 20 ldflags = [ 21 21 "-X github.com/cirruslabs/cirrus-cli/internal/version.Version=v${version}"
+1 -1
pkgs/development/tools/go-bindata/default.nix
··· 21 21 homepage = "https://github.com/kevinburke/go-bindata"; 22 22 changelog = "https://github.com/kevinburke/go-bindata/blob/v${version}/CHANGELOG.md"; 23 23 description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program"; 24 - maintainers = with maintainers; [ cstrahan ]; 24 + maintainers = with maintainers; [ ]; 25 25 license = licenses.cc0; 26 26 }; 27 27 }
+1 -1
pkgs/development/tools/misc/chruby/default.nix
··· 37 37 description = "Changes the current Ruby"; 38 38 homepage = "https://github.com/postmodern/chruby"; 39 39 license = licenses.mit; 40 - maintainers = with maintainers; [ cstrahan ]; 40 + maintainers = with maintainers; [ ]; 41 41 mainProgram = "chruby-exec"; 42 42 platforms = platforms.unix; 43 43 };
+1 -1
pkgs/development/tools/misc/ycmd/default.nix
··· 91 91 description = "A code-completion and comprehension server"; 92 92 homepage = "https://github.com/ycm-core/ycmd"; 93 93 license = licenses.gpl3; 94 - maintainers = with maintainers; [ rasendubi cstrahan lnl7 siriobalmelli ]; 94 + maintainers = with maintainers; [ rasendubi lnl7 siriobalmelli ]; 95 95 platforms = platforms.all; 96 96 }; 97 97 }
+1 -1
pkgs/development/tools/packer/default.nix
··· 31 31 description = "A tool for creating identical machine images for multiple platforms from a single source configuration"; 32 32 homepage = "https://www.packer.io"; 33 33 license = licenses.mpl20; 34 - maintainers = with maintainers; [ cstrahan zimbatm ma27 techknowlogick qjoly ]; 34 + maintainers = with maintainers; [ zimbatm ma27 techknowlogick qjoly ]; 35 35 changelog = "https://github.com/hashicorp/packer/blob/v${version}/CHANGELOG.md"; 36 36 }; 37 37 }
+1 -1
pkgs/development/tools/watchman/default.nix
··· 99 99 meta = with lib; { 100 100 description = "Watches files and takes action when they change"; 101 101 homepage = "https://facebook.github.io/watchman"; 102 - maintainers = with maintainers; [ cstrahan kylesferrazza ]; 102 + maintainers = with maintainers; [ kylesferrazza ]; 103 103 platforms = platforms.unix; 104 104 license = licenses.mit; 105 105 };
+1 -1
pkgs/misc/cups/drivers/cnijfilter2/default.nix
··· 145 145 homepage = "https://hk.canon/en/support/0101048401/1"; 146 146 license = licenses.unfree; 147 147 platforms = [ "i686-linux" "x86_64-linux" ]; 148 - maintainers = with maintainers; [ cstrahan ]; 148 + maintainers = with maintainers; [ ]; 149 149 }; 150 150 }
+1 -1
pkgs/misc/mnemonicode/default.nix
··· 22 22 ''; 23 23 license = licenses.mit; 24 24 platforms = platforms.all; 25 - maintainers = [ maintainers.cstrahan ]; 25 + maintainers = [ ]; 26 26 }; 27 27 }
+1 -1
pkgs/misc/scrcpy/default.nix
··· 72 72 ]; 73 73 license = licenses.asl20; 74 74 platforms = platforms.unix; 75 - maintainers = with maintainers; [ deltaevo lukeadams msfjarvis ]; 75 + maintainers = with maintainers; [ deltaevo msfjarvis ]; 76 76 }; 77 77 }
+1 -1
pkgs/os-specific/linux/eventstat/default.nix
··· 23 23 homepage = "https://github.com/ColinIanKing/eventstat"; 24 24 license = licenses.gpl2; 25 25 platforms = platforms.linux; 26 - maintainers = with maintainers; [ cstrahan ]; 26 + maintainers = with maintainers; [ ]; 27 27 }; 28 28 }
+1 -1
pkgs/os-specific/linux/iomelt/default.nix
··· 20 20 meta = with lib; { 21 21 description = "A simple yet effective way to benchmark disk IO in Linux systems"; 22 22 homepage = "http://www.iomelt.com"; 23 - maintainers = with maintainers; [ cstrahan ]; 23 + maintainers = with maintainers; [ ]; 24 24 license = licenses.artistic2; 25 25 platforms = platforms.linux; 26 26 };
+1 -1
pkgs/os-specific/linux/mbpfan/default.nix
··· 19 19 homepage = "https://github.com/dgraziotin/mbpfan"; 20 20 license = licenses.gpl3; 21 21 platforms = platforms.linux; 22 - maintainers = with maintainers; [ cstrahan ]; 22 + maintainers = with maintainers; [ ]; 23 23 }; 24 24 }
+1 -1
pkgs/os-specific/linux/pipework/default.nix
··· 22 22 homepage = "https://github.com/jpetazzo/pipework"; 23 23 license = licenses.asl20; 24 24 platforms = platforms.linux; 25 - maintainers = with maintainers; [ cstrahan ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+1 -1
pkgs/os-specific/linux/xsensors/default.nix
··· 18 18 meta = with lib; { 19 19 license = licenses.gpl2; 20 20 platforms = platforms.linux; 21 - maintainers = with maintainers; [ cstrahan ]; 21 + maintainers = with maintainers; [ ]; 22 22 }; 23 23 }
+169 -61
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2023.9.3"; 5 + version = "2023.10.0"; 6 6 components = { 7 7 "3_day_blinds" = ps: with ps; [ 8 8 ]; ··· 79 79 pyserial 80 80 pyudev 81 81 sqlalchemy 82 - webrtcvad 82 + webrtc-noise-gain 83 83 zeroconf 84 84 ]; 85 85 "airtouch4" = ps: with ps; [ ··· 200 200 aqualogic 201 201 ]; 202 202 "aquostv" = ps: with ps; [ 203 - ]; # missing inputs: sharp-aquos-rc 203 + ]; # missing inputs: sharp_aquos_rc 204 204 "aranet" = ps: with ps; [ 205 205 aioesphomeapi 206 206 aiohttp-cors ··· 224 224 pyserial 225 225 pyudev 226 226 sqlalchemy 227 - webrtcvad 227 + webrtc-noise-gain 228 228 zeroconf 229 229 ]; 230 230 "arcam_fmj" = ps: with ps; [ ··· 251 251 hassil 252 252 home-assistant-intents 253 253 mutagen 254 - webrtcvad 254 + webrtc-noise-gain 255 255 ]; 256 256 "asterisk_cdr" = ps: with ps; [ 257 257 asterisk-mbox ··· 395 395 pyserial 396 396 pyudev 397 397 sqlalchemy 398 - webrtcvad 398 + webrtc-noise-gain 399 399 zeroconf 400 400 ]; 401 401 "blueprint" = ps: with ps; [ ··· 439 439 pyserial 440 440 pyudev 441 441 sqlalchemy 442 - webrtcvad 442 + webrtc-noise-gain 443 443 zeroconf 444 444 ]; 445 445 "bluetooth_le_tracker" = ps: with ps; [ ··· 464 464 pyserial 465 465 pyudev 466 466 sqlalchemy 467 - webrtcvad 467 + webrtc-noise-gain 468 468 zeroconf 469 469 ]; 470 470 "bluetooth_tracker" = ps: with ps; [ ··· 540 540 pyserial 541 541 pyudev 542 542 sqlalchemy 543 - webrtcvad 543 + webrtc-noise-gain 544 544 zeroconf 545 545 ]; 546 546 "bticino" = ps: with ps; [ ··· 581 581 pychromecast 582 582 pyturbojpeg 583 583 sqlalchemy 584 - webrtcvad 584 + webrtc-noise-gain 585 585 zeroconf 586 586 ]; 587 587 "cert_expiry" = ps: with ps; [ ··· 620 620 home-assistant-intents 621 621 mutagen 622 622 pyturbojpeg 623 - webrtcvad 623 + webrtc-noise-gain 624 624 ]; 625 625 "cloudflare" = ps: with ps; [ 626 626 pycfdns ··· 754 754 scapy 755 755 securetar 756 756 sqlalchemy 757 - webrtcvad 757 + webrtc-noise-gain 758 758 zeroconf 759 759 ]; 760 760 "delijn" = ps: with ps; [ ··· 895 895 pyserial 896 896 pyudev 897 897 sqlalchemy 898 - webrtcvad 898 + webrtc-noise-gain 899 899 zeroconf 900 900 ]; 901 901 "dovado" = ps: with ps; [ ··· 956 956 "ecobee" = ps: with ps; [ 957 957 python-ecobee-api 958 958 ]; 959 + "ecoforest" = ps: with ps; [ 960 + ]; # missing inputs: pyecoforest 959 961 "econet" = ps: with ps; [ 960 962 pyeconet 961 963 ]; ··· 1052 1054 "enigma2" = ps: with ps; [ 1053 1055 openwebifpy 1054 1056 ]; 1057 + "enmax" = ps: with ps; [ 1058 + ]; 1055 1059 "enocean" = ps: with ps; [ 1056 1060 enocean 1057 1061 ]; ··· 1098 1102 pyserial 1099 1103 pyudev 1100 1104 sqlalchemy 1101 - webrtcvad 1105 + webrtc-noise-gain 1102 1106 zeroconf 1103 1107 ]; # missing inputs: python-eq3bt 1104 1108 "escea" = ps: with ps; [ ··· 1126 1130 pyserial 1127 1131 pyudev 1128 1132 sqlalchemy 1129 - webrtcvad 1133 + webrtc-noise-gain 1130 1134 zeroconf 1131 1135 ]; 1132 1136 "etherscan" = ps: with ps; [ ··· 1157 1161 pyserial 1158 1162 pyudev 1159 1163 sqlalchemy 1160 - webrtcvad 1164 + webrtc-noise-gain 1161 1165 zeroconf 1162 1166 ]; 1163 1167 "event" = ps: with ps; [ ··· 1269 1273 pyserial 1270 1274 pyudev 1271 1275 sqlalchemy 1272 - webrtcvad 1276 + webrtc-noise-gain 1273 1277 zeroconf 1274 1278 ]; 1275 1279 "fleetgo" = ps: with ps; [ ··· 1410 1414 pyserial 1411 1415 pyudev 1412 1416 sqlalchemy 1413 - webrtcvad 1417 + webrtc-noise-gain 1414 1418 zeroconf 1415 - ]; # missing inputs: gardena_bluetooth 1419 + ]; # missing inputs: gardena-bluetooth 1416 1420 "gaviota" = ps: with ps; [ 1417 1421 ]; 1418 1422 "gc100" = ps: with ps; [ ··· 1563 1567 pyserial 1564 1568 pyudev 1565 1569 sqlalchemy 1566 - webrtcvad 1570 + webrtc-noise-gain 1567 1571 zeroconf 1568 1572 ]; 1569 1573 "gpsd" = ps: with ps; [ ··· 1694 1698 psutil-home-assistant 1695 1699 pyserial 1696 1700 pyserial-asyncio 1701 + pyserial-asyncio-fast 1697 1702 pyudev 1698 1703 sqlalchemy 1699 1704 universal-silabs-flasher ··· 1713 1718 psutil-home-assistant 1714 1719 pyserial 1715 1720 pyserial-asyncio 1721 + pyserial-asyncio-fast 1716 1722 pyudev 1717 1723 sqlalchemy 1718 1724 universal-silabs-flasher ··· 1732 1738 psutil-home-assistant 1733 1739 pyserial 1734 1740 pyserial-asyncio 1741 + pyserial-asyncio-fast 1735 1742 pyudev 1736 1743 sqlalchemy 1737 1744 universal-silabs-flasher ··· 1751 1758 psutil-home-assistant 1752 1759 pyserial 1753 1760 pyserial-asyncio 1761 + pyserial-asyncio-fast 1754 1762 pyudev 1755 1763 sqlalchemy 1756 1764 universal-silabs-flasher ··· 1799 1807 python-otbr-api 1800 1808 pyudev 1801 1809 sqlalchemy 1802 - webrtcvad 1810 + webrtc-noise-gain 1803 1811 zeroconf 1804 1812 ]; 1805 1813 "homematic" = ps: with ps; [ ··· 1889 1897 pyserial 1890 1898 pyudev 1891 1899 sqlalchemy 1892 - webrtcvad 1900 + webrtc-noise-gain 1893 1901 zeroconf 1894 1902 ]; 1895 1903 "icloud" = ps: with ps; [ 1896 1904 pyicloud 1897 1905 ]; 1906 + "idasen_desk" = ps: with ps; [ 1907 + aioesphomeapi 1908 + aiohttp-cors 1909 + aioruuvigateway 1910 + aioshelly 1911 + async-interrupt 1912 + bleak 1913 + bleak-retry-connector 1914 + bluetooth-adapters 1915 + bluetooth-auto-recovery 1916 + bluetooth-data-tools 1917 + dbus-fast 1918 + esphome-dashboard-api 1919 + fnv-hash-fast 1920 + hassil 1921 + home-assistant-intents 1922 + ifaddr 1923 + mutagen 1924 + psutil-home-assistant 1925 + pyserial 1926 + pyudev 1927 + sqlalchemy 1928 + webrtc-noise-gain 1929 + zeroconf 1930 + ]; # missing inputs: idasen-ha 1898 1931 "idteck_prox" = ps: with ps; [ 1899 1932 ]; # missing inputs: rfk101py 1900 1933 "ifttt" = ps: with ps; [ ··· 1958 1991 pyserial 1959 1992 pyudev 1960 1993 sqlalchemy 1961 - webrtcvad 1994 + webrtc-noise-gain 1962 1995 zeroconf 1963 1996 ]; 1964 1997 "input_boolean" = ps: with ps; [ ··· 2098 2131 pyserial 2099 2132 pyudev 2100 2133 sqlalchemy 2101 - webrtcvad 2134 + webrtc-noise-gain 2102 2135 zeroconf 2103 2136 ]; 2104 2137 "keyboard" = ps: with ps; [ ··· 2130 2163 pyserial 2131 2164 pyudev 2132 2165 sqlalchemy 2133 - webrtcvad 2166 + webrtc-noise-gain 2134 2167 zeroconf 2135 2168 ]; 2136 2169 "kira" = ps: with ps; [ ··· 2240 2273 pyserial 2241 2274 pyudev 2242 2275 sqlalchemy 2243 - webrtcvad 2276 + webrtc-noise-gain 2244 2277 zeroconf 2245 2278 ]; 2246 2279 "led_ble" = ps: with ps; [ ··· 2266 2299 pyserial 2267 2300 pyudev 2268 2301 sqlalchemy 2269 - webrtcvad 2302 + webrtc-noise-gain 2270 2303 zeroconf 2271 2304 ]; 2272 2305 "legrand" = ps: with ps; [ ··· 2372 2405 home-assistant-intents 2373 2406 mutagen 2374 2407 pyturbojpeg 2375 - webrtcvad 2408 + webrtc-noise-gain 2376 2409 ]; # missing inputs: loqedAPI 2377 2410 "lovelace" = ps: with ps; [ 2378 2411 ]; ··· 2435 2468 mastodon-py 2436 2469 ]; 2437 2470 "matrix" = ps: with ps; [ 2438 - matrix-client 2471 + matrix-nio 2472 + pillow 2439 2473 ]; 2440 2474 "matter" = ps: with ps; [ 2441 2475 aiohttp-cors ··· 2453 2487 "meater" = ps: with ps; [ 2454 2488 meater-python 2455 2489 ]; 2490 + "medcom_ble" = ps: with ps; [ 2491 + aioesphomeapi 2492 + aiohttp-cors 2493 + aioruuvigateway 2494 + aioshelly 2495 + async-interrupt 2496 + bleak 2497 + bleak-retry-connector 2498 + bluetooth-adapters 2499 + bluetooth-auto-recovery 2500 + bluetooth-data-tools 2501 + dbus-fast 2502 + esphome-dashboard-api 2503 + fnv-hash-fast 2504 + hassil 2505 + home-assistant-intents 2506 + ifaddr 2507 + mutagen 2508 + psutil-home-assistant 2509 + pyserial 2510 + pyudev 2511 + sqlalchemy 2512 + webrtc-noise-gain 2513 + zeroconf 2514 + ]; # missing inputs: medcom-ble 2456 2515 "media_extractor" = ps: with ps; [ 2457 2516 aiohttp-cors 2458 2517 yt-dlp ··· 2493 2552 pyserial 2494 2553 pyudev 2495 2554 sqlalchemy 2496 - webrtcvad 2555 + webrtc-noise-gain 2497 2556 zeroconf 2498 2557 ]; # missing inputs: melnor-bluetooth 2499 2558 "meraki" = ps: with ps; [ ··· 2548 2607 "min_max" = ps: with ps; [ 2549 2608 ]; 2550 2609 "minecraft_server" = ps: with ps; [ 2551 - aiodns 2552 - getmac 2553 2610 mcstatus 2554 2611 ]; 2555 2612 "minio" = ps: with ps; [ ··· 2580 2637 pyserial 2581 2638 pyudev 2582 2639 sqlalchemy 2583 - webrtcvad 2640 + webrtc-noise-gain 2584 2641 zeroconf 2585 2642 ]; 2586 2643 "mobile_app" = ps: with ps; [ ··· 2595 2652 pynacl 2596 2653 pyturbojpeg 2597 2654 sqlalchemy 2598 - webrtcvad 2655 + webrtc-noise-gain 2599 2656 ]; 2600 2657 "mochad" = ps: with ps; [ 2601 2658 ]; # missing inputs: pymochad ··· 2647 2704 pyserial 2648 2705 pyudev 2649 2706 sqlalchemy 2650 - webrtcvad 2707 + webrtc-noise-gain 2651 2708 zeroconf 2652 2709 ]; 2653 2710 "motion_blinds" = ps: with ps; [ ··· 2712 2769 sqlalchemy 2713 2770 ]; 2714 2771 "myq" = ps: with ps; [ 2715 - pymyq 2716 - ]; 2772 + ]; # missing inputs: python-myq 2717 2773 "mysensors" = ps: with ps; [ 2718 2774 aiohttp-cors 2719 2775 janus ··· 2771 2827 pyatmo 2772 2828 pyturbojpeg 2773 2829 sqlalchemy 2774 - webrtcvad 2830 + webrtc-noise-gain 2775 2831 ]; 2776 2832 "netdata" = ps: with ps; [ 2777 2833 netdata ··· 3014 3070 pyserial 3015 3071 pyudev 3016 3072 sqlalchemy 3017 - webrtcvad 3073 + webrtc-noise-gain 3018 3074 zeroconf 3019 3075 ]; 3020 3076 "oru" = ps: with ps; [ ··· 3037 3093 pyroute2 3038 3094 pyserial 3039 3095 pyserial-asyncio 3096 + pyserial-asyncio-fast 3040 3097 python-otbr-api 3041 3098 pyudev 3042 3099 sqlalchemy ··· 3068 3125 paho-mqtt 3069 3126 pynacl 3070 3127 pyturbojpeg 3071 - webrtcvad 3128 + webrtc-noise-gain 3072 3129 ]; 3073 3130 "p1_monitor" = ps: with ps; [ 3074 3131 p1monitor ··· 3153 3210 mutagen 3154 3211 pyplaato 3155 3212 pyturbojpeg 3156 - webrtcvad 3213 + webrtc-noise-gain 3157 3214 ]; 3158 3215 "plant" = ps: with ps; [ 3159 3216 fnv-hash-fast ··· 3184 3241 "powerwall" = ps: with ps; [ 3185 3242 tesla-powerwall 3186 3243 ]; 3244 + "private_ble_device" = ps: with ps; [ 3245 + aioesphomeapi 3246 + aiohttp-cors 3247 + aioruuvigateway 3248 + aioshelly 3249 + async-interrupt 3250 + bleak 3251 + bleak-retry-connector 3252 + bluetooth-adapters 3253 + bluetooth-auto-recovery 3254 + bluetooth-data-tools 3255 + dbus-fast 3256 + esphome-dashboard-api 3257 + fnv-hash-fast 3258 + hassil 3259 + home-assistant-intents 3260 + ifaddr 3261 + mutagen 3262 + psutil-home-assistant 3263 + pyserial 3264 + pyudev 3265 + sqlalchemy 3266 + webrtc-noise-gain 3267 + zeroconf 3268 + ]; 3187 3269 "profiler" = ps: with ps; [ 3188 3270 guppy3 3189 3271 objgraph ··· 3273 3355 pyudev 3274 3356 qingping-ble 3275 3357 sqlalchemy 3276 - webrtcvad 3358 + webrtc-noise-gain 3277 3359 zeroconf 3278 3360 ]; 3279 3361 "qld_bushfire" = ps: with ps; [ ··· 3308 3390 mutagen 3309 3391 pyturbojpeg 3310 3392 rachiopy 3311 - webrtcvad 3393 + webrtc-noise-gain 3312 3394 ]; 3313 3395 "radarr" = ps: with ps; [ 3314 3396 aiopyarr ··· 3357 3439 pyudev 3358 3440 rapt-ble 3359 3441 sqlalchemy 3360 - webrtcvad 3442 + webrtc-noise-gain 3361 3443 zeroconf 3362 3444 ]; 3363 3445 "raspberry_pi" = ps: with ps; [ ··· 3481 3563 ]; 3482 3564 "ruckus_unleashed" = ps: with ps; [ 3483 3565 aioruckus 3484 - xmltodict 3485 3566 ]; 3486 3567 "russound_rio" = ps: with ps; [ 3487 3568 ]; # missing inputs: russound-rio ··· 3525 3606 pyudev 3526 3607 ruuvitag-ble 3527 3608 sqlalchemy 3528 - webrtcvad 3609 + webrtc-noise-gain 3529 3610 zeroconf 3530 3611 ]; 3531 3612 "rympro" = ps: with ps; [ ··· 3546 3627 psutil-home-assistant 3547 3628 pyturbojpeg 3548 3629 sqlalchemy 3549 - webrtcvad 3630 + webrtc-noise-gain 3550 3631 ]; 3551 3632 "saj" = ps: with ps; [ 3552 3633 pysaj ··· 3636 3717 pyudev 3637 3718 sensirion-ble 3638 3719 sqlalchemy 3639 - webrtcvad 3720 + webrtc-noise-gain 3640 3721 zeroconf 3641 3722 ]; 3642 3723 "sensor" = ps: with ps; [ ··· 3669 3750 pyudev 3670 3751 sensorpro-ble 3671 3752 sqlalchemy 3672 - webrtcvad 3753 + webrtc-noise-gain 3673 3754 zeroconf 3674 3755 ]; 3675 3756 "sensorpush" = ps: with ps; [ ··· 3695 3776 pyudev 3696 3777 sensorpush-ble 3697 3778 sqlalchemy 3698 - webrtcvad 3779 + webrtc-noise-gain 3699 3780 zeroconf 3700 3781 ]; 3701 3782 "sentry" = ps: with ps; [ ··· 3833 3914 pysmartapp 3834 3915 pysmartthings 3835 3916 pyturbojpeg 3836 - webrtcvad 3917 + webrtc-noise-gain 3837 3918 ]; 3838 3919 "smarttub" = ps: with ps; [ 3839 3920 python-smarttub ··· 3880 3961 pysnooz 3881 3962 pyudev 3882 3963 sqlalchemy 3883 - webrtcvad 3964 + webrtc-noise-gain 3884 3965 zeroconf 3885 3966 ]; 3886 3967 "solaredge" = ps: with ps; [ ··· 4071 4152 pyswitchbot 4072 4153 pyudev 4073 4154 sqlalchemy 4074 - webrtcvad 4155 + webrtc-noise-gain 4075 4156 zeroconf 4076 4157 ]; 4158 + "switchbot_cloud" = ps: with ps; [ 4159 + ]; # missing inputs: switchbot-api 4077 4160 "switcher_kis" = ps: with ps; [ 4078 4161 aioswitcher 4079 4162 ]; ··· 4202 4285 pyudev 4203 4286 sqlalchemy 4204 4287 thermobeacon-ble 4205 - webrtcvad 4288 + webrtc-noise-gain 4206 4289 zeroconf 4207 4290 ]; 4208 4291 "thermoplus" = ps: with ps; [ ··· 4230 4313 pyudev 4231 4314 sqlalchemy 4232 4315 thermopro-ble 4233 - webrtcvad 4316 + webrtc-noise-gain 4234 4317 zeroconf 4235 4318 ]; 4236 4319 "thermoworks_smoke" = ps: with ps; [ ··· 4290 4373 pyudev 4291 4374 sqlalchemy 4292 4375 tilt-ble 4293 - webrtcvad 4376 + webrtc-noise-gain 4294 4377 zeroconf 4295 4378 ]; 4296 4379 "time" = ps: with ps; [ ··· 4323 4406 mutagen 4324 4407 pyturbojpeg 4325 4408 toonapi 4326 - webrtcvad 4409 + webrtc-noise-gain 4327 4410 ]; 4328 4411 "torque" = ps: with ps; [ 4329 4412 aiohttp-cors ··· 4410 4493 ttls 4411 4494 ]; 4412 4495 "twitch" = ps: with ps; [ 4496 + aiohttp-cors 4497 + fnv-hash-fast 4498 + psutil-home-assistant 4499 + sqlalchemy 4413 4500 twitchapi 4414 4501 ]; 4415 4502 "twitter" = ps: with ps; [ ··· 4427 4514 "ukraine_alarm" = ps: with ps; [ 4428 4515 uasiren 4429 4516 ]; 4517 + "ultraloq" = ps: with ps; [ 4518 + ]; 4430 4519 "unifi" = ps: with ps; [ 4431 4520 aiounifi 4432 4521 ]; ··· 4557 4646 hassil 4558 4647 home-assistant-intents 4559 4648 mutagen 4560 - webrtcvad 4649 + webrtc-noise-gain 4561 4650 ]; # missing inputs: voip-utils 4562 4651 "volkszaehler" = ps: with ps; [ 4563 4652 volkszaehler ··· 4602 4691 ]; 4603 4692 "weather" = ps: with ps; [ 4604 4693 ]; 4694 + "weatherflow" = ps: with ps; [ 4695 + pyweatherflowudp 4696 + ]; 4697 + "weatherkit" = ps: with ps; [ 4698 + ]; # missing inputs: apple_weatherkit 4605 4699 "webhook" = ps: with ps; [ 4606 4700 aiohttp-cors 4607 4701 ]; ··· 4636 4730 "withings" = ps: with ps; [ 4637 4731 aiohttp-cors 4638 4732 fnv-hash-fast 4733 + hass-nabucasa 4734 + hassil 4735 + home-assistant-intents 4736 + mutagen 4639 4737 psutil-home-assistant 4738 + pyturbojpeg 4640 4739 sqlalchemy 4740 + webrtc-noise-gain 4641 4741 withings-api 4642 4742 ]; 4643 4743 "wiz" = ps: with ps; [ ··· 4710 4810 pyserial 4711 4811 pyudev 4712 4812 sqlalchemy 4713 - webrtcvad 4813 + webrtc-noise-gain 4714 4814 xiaomi-ble 4715 4815 zeroconf 4716 4816 ]; ··· 4754 4854 pyserial 4755 4855 pyudev 4756 4856 sqlalchemy 4757 - webrtcvad 4857 + webrtc-noise-gain 4758 4858 yalexs-ble 4759 4859 zeroconf 4760 4860 ]; ··· 4844 4944 psutil-home-assistant 4845 4945 pyserial 4846 4946 pyserial-asyncio 4947 + pyserial-asyncio-fast 4847 4948 pyudev 4848 4949 sqlalchemy 4849 4950 universal-silabs-flasher ··· 4894 4995 "adguard" 4895 4996 "advantage_air" 4896 4997 "aemet" 4998 + "aftership" 4897 4999 "agent_dvr" 4898 5000 "air_quality" 4899 5001 "airly" ··· 5071 5173 "filter" 5072 5174 "fireservicerota" 5073 5175 "firmata" 5176 + "fitbit" 5074 5177 "fivem" 5075 5178 "fjaraskupan" 5076 5179 "flic" ··· 5168 5271 "humidifier" 5169 5272 "hunterdouglas_powerview" 5170 5273 "hvv_departures" 5274 + "hydrawise" 5171 5275 "hyperion" 5172 5276 "ialarm" 5173 5277 "iaqualink" ··· 5252 5356 "mailgun" 5253 5357 "manual" 5254 5358 "manual_mqtt" 5359 + "matrix" 5255 5360 "matter" 5256 5361 "maxcube" 5257 5362 "mazda" 5258 5363 "meater" 5364 + "media_extractor" 5259 5365 "media_player" 5260 5366 "media_source" 5261 5367 "melcloud" ··· 5292 5398 "mullvad" 5293 5399 "mutesync" 5294 5400 "my" 5295 - "myq" 5296 5401 "mysensors" 5297 5402 "mystrom" 5298 5403 "mythicbeastsdns" ··· 5372 5477 "point" 5373 5478 "poolsense" 5374 5479 "powerwall" 5480 + "private_ble_device" 5375 5481 "profiler" 5376 5482 "prometheus" 5377 5483 "prosegur" ··· 5603 5709 "wake_on_lan" 5604 5710 "wake_word" 5605 5711 "wallbox" 5712 + "waqi" 5606 5713 "water_heater" 5607 5714 "watttime" 5608 5715 "waze_travel_time" 5609 5716 "weather" 5717 + "weatherflow" 5610 5718 "webhook" 5611 5719 "webostv" 5612 5720 "websocket_api"
+3 -23
pkgs/servers/home-assistant/default.nix
··· 194 194 }; 195 195 }); 196 196 197 - plexapi = super.plexapi.overridePythonAttrs (oldAttrs: rec { 198 - version = "4.13.2"; 199 - src = fetchFromGitHub { 200 - owner = "pkkid"; 201 - repo = "python-plexapi"; 202 - rev = "refs/tags/${version}"; 203 - hash = "sha256-5YwINPgQ4efZBvu5McsLYicW/7keKSi011lthJUR9zw="; 204 - }; 205 - }); 206 - 207 197 # Pinned due to API changes in 0.1.0 208 198 poolsense = super.poolsense.overridePythonAttrs (oldAttrs: rec { 209 199 version = "0.0.8"; ··· 413 403 }; 414 404 }); 415 405 416 - zeroconf = super.zeroconf.overridePythonAttrs (oldAttrs: rec { 417 - version = "0.98.0"; 418 - src = fetchFromGitHub { 419 - owner = "python-zeroconf"; 420 - repo = "python-zeroconf"; 421 - rev = "refs/tags/${version}"; 422 - hash = "sha256-oajSXGQTsJsajRAnS/MkkbSyxTeVvdjvw1eiJaPzZMY="; 423 - }; 424 - }); 425 - 426 406 # internal python packages only consumed by home-assistant itself 427 407 home-assistant-frontend = self.callPackage ./frontend.nix { }; 428 408 home-assistant-intents = self.callPackage ./intents.nix { }; ··· 447 427 extraBuildInputs = extraPackages python.pkgs; 448 428 449 429 # Don't forget to run parse-requirements.py after updating 450 - hassVersion = "2023.9.3"; 430 + hassVersion = "2023.10.0"; 451 431 452 432 in python.pkgs.buildPythonApplication rec { 453 433 pname = "homeassistant"; ··· 463 443 # Primary source is the pypi sdist, because it contains translations 464 444 src = fetchPypi { 465 445 inherit pname version; 466 - hash = "sha256-tcIGYJ+r2+0jnf3xUxnFdwnLiOK9P0Y6sw0Mpd/YIT0="; 446 + hash = "sha256-UmgIQJRQRDMzjUO9lJVpKsIvrFHBzoXc5Kig69ZHttU="; 467 447 }; 468 448 469 449 # Secondary source is git for tests ··· 471 451 owner = "home-assistant"; 472 452 repo = "core"; 473 453 rev = "refs/tags/${version}"; 474 - hash = "sha256-zAUMevj2xvRkhZg4wuHDz0+X//cEU/D/HmokmX9oeCU="; 454 + hash = "sha256-M8TuH9oF4+6PuHDCHiGWxSnrQcOw/OsJVSfX/8XfyIM="; 475 455 }; 476 456 477 457 nativeBuildInputs = with python.pkgs; [
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 6 pname = "home-assistant-frontend"; 7 - version = "20230911.0"; 7 + version = "20231002.0"; 8 8 format = "wheel"; 9 9 10 10 src = fetchPypi { ··· 12 12 pname = "home_assistant_frontend"; 13 13 dist = "py3"; 14 14 python = "py3"; 15 - hash = "sha256-AcMZYjSbsBrfC0Oh5P+eruNILWdVmk46+p+8xLpqfuo="; 15 + hash = "sha256-19HFMuR7INHM805HwWyWS2qWXPOYuFjnpf0UP93tObg="; 16 16 }; 17 17 18 18 # there is nothing to strip in this package
+2 -2
pkgs/servers/home-assistant/intents.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "home-assistant-intents"; 23 - version = "2023.9.22"; 23 + version = "2023.10.2"; 24 24 format = "pyproject"; 25 25 26 26 disabled = pythonOlder "3.9"; ··· 29 29 owner = "home-assistant"; 30 30 repo = "intents-package"; 31 31 rev = "refs/tags/${version}"; 32 - hash = "sha256-n0IIWS5edh4XD/W9Eo88pal2+zJQtrHg74FSGvPIlPg="; 32 + hash = "sha256-4zaMDYHrUape+s9Z1nfGpud74pbkAeKBpJtmIyLdCjk="; 33 33 fetchSubmodules = true; 34 34 }; 35 35
+2 -2
pkgs/servers/home-assistant/stubs.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "homeassistant-stubs"; 11 - version = "2023.9.3"; 11 + version = "2023.10.0"; 12 12 format = "pyproject"; 13 13 14 14 disabled = python.version != home-assistant.python.version; ··· 17 17 owner = "KapJI"; 18 18 repo = "homeassistant-stubs"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-dZOpfSfq47sGJJB6CvcBDlSLBG8EVAX8RMuNzbP7bTs="; 20 + hash = "sha256-/RVv2gfODAiG5mPteeHOleqkQwmamCfliCGrf1eSIr4="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+2
pkgs/servers/home-assistant/tests.nix
··· 5 5 let 6 6 # some components' tests have additional dependencies 7 7 extraCheckInputs = with home-assistant.python.pkgs; { 8 + airzone_cloud = [ aioairzone ]; 8 9 alexa = [ av ]; 9 10 bluetooth = [ pyswitchbot ]; 10 11 bthome = [ xiaomi-ble ]; ··· 19 20 homeassistant_sky_connect = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp zwave-js-server-python ]; 20 21 homeassistant_yellow = [ bellows zha-quirks zigpy-deconz zigpy-xbee zigpy-zigate zigpy-znp ]; 21 22 lovelace = [ pychromecast ]; 23 + matrix = [ pydantic ]; 22 24 mopeka = [ pyswitchbot ]; 23 25 nest = [ av ]; 24 26 onboarding = [ pymetno radios rpi-bad-power ];
+1 -1
pkgs/servers/http/spawn-fcgi/default.nix
··· 19 19 homepage = "https://redmine.lighttpd.net/projects/spawn-fcgi"; 20 20 description = "Provides an interface to external programs that support the FastCGI interface"; 21 21 license = licenses.bsd3; 22 - maintainers = with maintainers; [ cstrahan ]; 22 + maintainers = with maintainers; [ ]; 23 23 platforms = with platforms; unix; 24 24 }; 25 25 }
+3 -3
pkgs/servers/mediamtx/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "mediamtx"; 9 - version = "1.1.0"; 9 + version = "1.1.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "bluenviron"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-XD7m6vp7Xu/Fmtv9smzz+zwVosP8UAOUkE+6KRAfVMQ="; 15 + hash = "sha256-VIXrptVF5kjjz9vHqqjAM5gYk2o/wkUvudXixCloPgE="; 16 16 }; 17 17 18 - vendorHash = "sha256-Mnyc7PL6nUyoCnS6Mm+EGsxV8ciq0x4GXdbwslOs9hw="; 18 + vendorHash = "sha256-bUZU9I2lqjMOupkCQKSfdrWsBYmAVrLEXod0l+J3p6g="; 19 19 20 20 # Tests need docker 21 21 doCheck = false;
+1 -1
pkgs/servers/meteor/default.nix
··· 97 97 sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 98 98 license = licenses.mit; 99 99 platforms = builtins.attrNames srcs; 100 - maintainers = with maintainers; [ cstrahan ]; 100 + maintainers = with maintainers; [ ]; 101 101 }; 102 102 }
+1 -1
pkgs/servers/nosql/mongodb/mongodb.nix
··· 190 190 homepage = "http://www.mongodb.org"; 191 191 inherit license; 192 192 193 - maintainers = with maintainers; [ bluescreen303 offline cstrahan ]; 193 + maintainers = with maintainers; [ bluescreen303 offline ]; 194 194 platforms = subtractLists systems.doubles.i686 systems.doubles.unix; 195 195 broken = (versionOlder version "6.0" && stdenv.system == "aarch64-darwin"); 196 196 };
+2 -2
pkgs/servers/search/quickwit/default.nix
··· 9 9 10 10 let 11 11 pname = "quickwit"; 12 - version = "0.6.3"; 12 + version = "0.6.4"; 13 13 in 14 14 rustPlatform.buildRustPackage rec { 15 15 inherit pname version; ··· 18 18 owner = "quickwit-oss"; 19 19 repo = pname; 20 20 rev = "v${version}"; 21 - hash = "sha256-u8t6QIoislQUQO/xMKfNx/vVTgeEoh8ZIhJ+RvD3YCw="; 21 + hash = "sha256-stlm3oDMQVoMza3s4JApynXbzhrarfXw3uAxGMZQJqs="; 22 22 }; 23 23 24 24 postPatch = ''
+2 -2
pkgs/servers/sql/pgbouncer/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "pgbouncer"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "https://www.pgbouncer.org/downloads/files/${version}/${pname}-${version}.tar.gz"; 9 - hash = "sha256-5w1afLi3Hdfbq/01cdcaS2uZ8uhdjXGvHnNPbYZjXw4="; 9 + hash = "sha256-JJks9VfXNCbXBIaY3/x7AZ5jZNTYdXriz14kcShqIIg="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ];
+1 -1
pkgs/servers/x11/xquartz/default.nix
··· 177 177 178 178 meta = with lib; { 179 179 platforms = platforms.darwin; 180 - maintainers = with maintainers; [ cstrahan ]; 180 + maintainers = with maintainers; [ ]; 181 181 license = licenses.mit; 182 182 }; 183 183 }
+1 -1
pkgs/servers/zookeeper/default.nix
··· 48 48 homepage = "https://zookeeper.apache.org"; 49 49 description = "Apache Zookeeper"; 50 50 license = licenses.asl20; 51 - maintainers = with maintainers; [ nathan-gs cstrahan pradeepchhetri ztzg ]; 51 + maintainers = with maintainers; [ nathan-gs pradeepchhetri ztzg ]; 52 52 platforms = platforms.unix; 53 53 }; 54 54 }
+1 -1
pkgs/tools/X11/go-sct/default.nix
··· 26 26 description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; 27 27 homepage = "https://github.com/d4l3k/go-sct"; 28 28 license = licenses.mit; 29 - maintainers = with maintainers; [ cstrahan ]; 29 + maintainers = with maintainers; [ ]; 30 30 mainProgram = "sct"; 31 31 }; 32 32 }
+15 -10
pkgs/tools/X11/ncview/default.nix
··· 8 8 , xorg 9 9 }: 10 10 11 - let 11 + stdenv.mkDerivation (finalAttrs: { 12 12 pname = "ncview"; 13 - version = "2.1.8"; 14 - 15 - in stdenv.mkDerivation { 16 - name = "${pname}-${version}"; 13 + version = "2.1.9"; 17 14 18 15 src = fetchurl { 19 - url = "ftp://cirrus.ucsd.edu/pub/ncview/ncview-2.1.8.tar.gz"; 20 - sha256 = "1gliziyxil2fcz85hj6z0jq33avrxdcjs74d500lhxwvgd8drfp8"; 16 + url = "https://cirrus.ucsd.edu/~pierce/ncview/ncview-${finalAttrs.version}.tar.gz"; 17 + hash = "sha256-4jF6wJSvYvCtz2hCHXBlgglDaq40RkCVnsiXWmRYka8="; 21 18 }; 22 19 20 + strictDeps = true; 21 + 22 + nativeBuildInputs = [ 23 + netcdf 24 + ]; 25 + 23 26 buildInputs = [ 24 27 expat 25 28 libpng ··· 34 37 35 38 meta = with lib; { 36 39 description = "Visual browser for netCDF format files"; 37 - homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html"; 38 - license = licenses.gpl3; 40 + homepage = "http://meteora.ucsd.edu/~pierce/ncview_home_page.html"; 41 + license = licenses.gpl3Plus; 42 + mainProgram = "ncview"; 39 43 maintainers = with maintainers; [ jmettes ]; 44 + platforms = platforms.all; 40 45 }; 41 - } 46 + })
+1 -1
pkgs/tools/admin/rset/default.nix
··· 43 43 changelog = "https://github.com/eradman/rset/raw/${version}/NEWS"; 44 44 license = licenses.isc; 45 45 platforms = platforms.unix; 46 - maintainers = with maintainers; [ cstrahan ]; 46 + maintainers = with maintainers; [ ]; 47 47 # 2023-08-19, fails to compile with glibc-2.38 because of strlcpy. 48 48 # At the time of writing, this was 4 minors behind already and 49 49 # the `paths.patch` didn't apply anymore, so this is now considered
+1 -1
pkgs/tools/filesystems/zkfuse/default.nix
··· 35 35 36 36 meta = with lib; { 37 37 platforms = platforms.linux; 38 - maintainers = with maintainers; [ cstrahan ztzg ]; 38 + maintainers = with maintainers; [ ztzg ]; 39 39 license = licenses.asl20; 40 40 }; 41 41 }
+3 -3
pkgs/tools/graphics/svg2pdf/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "svg2pdf"; 8 - version = "0.7.1"; 8 + version = "0.8.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "typst"; 12 12 repo = "svg2pdf"; 13 13 rev = "v${version}"; 14 - hash = "sha256-XTOGxuytbkaq4ZV6rXKJF9A/KSX6naYQ3kdICDQU4JA="; 14 + hash = "sha256-iN6/VO6EMP9wMoTn4t0y1Oq9XP9Q3UcRNCWsMzI4Fn8="; 15 15 }; 16 - cargoHash = "sha256-CQPkVJ3quQlnIS05tAj+i7kGk2l0RvGM/FRNvgQ0mHM="; 16 + cargoHash = "sha256-Xxb8DeTAmw0Pq4mrLVcpEuzq7/SX+AlUSWoA2dcVQJA="; 17 17 buildFeatures = [ "cli" ]; 18 18 19 19 meta = with lib; {
+1 -1
pkgs/tools/misc/dbus-map/default.nix
··· 22 22 homepage = "https://github.com/taviso/dbusmap"; 23 23 license = licenses.gpl2; 24 24 platforms = platforms.linux; 25 - maintainers = with maintainers; [ cstrahan ]; 25 + maintainers = with maintainers; [ ]; 26 26 }; 27 27 }
+1
pkgs/tools/misc/fzf/default.nix
··· 101 101 maintainers = with maintainers; [ Br1ght0ne ma27 zowoq ]; 102 102 platforms = platforms.unix; 103 103 changelog = "https://github.com/junegunn/fzf/blob/${version}/CHANGELOG.md"; 104 + mainProgram = "fzf"; 104 105 }; 105 106 }
+1 -1
pkgs/tools/misc/logstash/contrib.nix
··· 28 28 homepage = "https://github.com/elasticsearch/logstash-contrib"; 29 29 license = lib.licenses.asl20; 30 30 platforms = lib.platforms.unix; 31 - maintainers = with maintainers; [ cstrahan ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+2 -2
pkgs/tools/misc/pgmetrics/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "pgmetrics"; 5 - version = "1.15.2"; 5 + version = "1.16.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "rapidloop"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-WzyTLOJo/wTZA9glxO0ovcaADlHV+AKLChWSLJ+uvaQ="; 11 + sha256 = "sha256-8pF3E0Zh/SsH6+5iXt1KFwud2ijoisYfcu+QHRM9x9s="; 12 12 }; 13 13 14 14 vendorHash = "sha256-KIMnvGMIipuIFPTSeERtCfvlPuvHvEHdjBJ1TbT2d1s=";
+1 -1
pkgs/tools/misc/xsel/default.nix
··· 18 18 description = "Command-line program for getting and setting the contents of the X selection"; 19 19 homepage = "http://www.kfish.org/software/xsel"; 20 20 license = licenses.mit; 21 - maintainers = [ maintainers.cstrahan ]; 21 + maintainers = [ ]; 22 22 platforms = lib.platforms.unix; 23 23 }; 24 24 }
+1 -1
pkgs/tools/networking/biosdevname/default.nix
··· 23 23 description = "Udev helper for naming devices per BIOS names"; 24 24 license = licenses.gpl2; 25 25 platforms = ["x86_64-linux" "i686-linux"]; 26 - maintainers = with maintainers; [ cstrahan ]; 26 + maintainers = with maintainers; [ ]; 27 27 }; 28 28 }
+2 -2
pkgs/tools/networking/restish/default.nix
··· 10 10 11 11 buildGoModule rec { 12 12 pname = "restish"; 13 - version = "0.18.0"; 13 + version = "0.19.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "danielgtaylor"; 17 17 repo = "restish"; 18 18 rev = "refs/tags/v${version}"; 19 - hash = "sha256-DvI1pe4ONuIhSecJOhv6GKRzOYHo+jePqT8oYVvcKnM="; 19 + hash = "sha256-zAWlbfZywL8jepgmXBM5lacRv1N/+dBd+9vIavWAyNs="; 20 20 }; 21 21 22 22 vendorHash = "sha256-sUBqeLhpWUu1NfAmFQCKFHm8DQaB8LYRrFexvuF8vC8=";
+1 -1
pkgs/tools/package-management/apt/default.nix
··· 82 82 changelog = "https://salsa.debian.org/apt-team/apt/-/raw/${version}/debian/changelog"; 83 83 license = licenses.gpl2Plus; 84 84 platforms = platforms.linux; 85 - maintainers = with maintainers; [ cstrahan ]; 85 + maintainers = with maintainers; [ ]; 86 86 }; 87 87 }
+1 -1
pkgs/tools/security/doas/default.nix
··· 53 53 homepage = "https://github.com/Duncaen/OpenDoas"; 54 54 license = licenses.isc; 55 55 platforms = platforms.linux; 56 - maintainers = with maintainers; [ cole-h cstrahan ]; 56 + maintainers = with maintainers; [ cole-h ]; 57 57 }; 58 58 }
+1 -1
pkgs/tools/security/lastpass-cli/default.nix
··· 57 57 homepage = "https://github.com/lastpass/lastpass-cli"; 58 58 license = licenses.gpl2Plus; 59 59 platforms = platforms.unix; 60 - maintainers = with maintainers; [ cstrahan ]; 60 + maintainers = with maintainers; [ ]; 61 61 }; 62 62 }
+1 -1
pkgs/tools/security/mkpasswd/default.nix
··· 15 15 homepage = "https://packages.qa.debian.org/w/whois.html"; 16 16 description = "Overfeatured front-end to crypt, from the Debian whois package"; 17 17 license = licenses.gpl2; 18 - maintainers = with maintainers; [ cstrahan fpletz ]; 18 + maintainers = with maintainers; [ fpletz ]; 19 19 platforms = platforms.unix; 20 20 }; 21 21 }
+1 -1
pkgs/tools/system/nq/default.nix
··· 20 20 homepage = "https://github.com/chneukirchen/nq"; 21 21 license = licenses.publicDomain; 22 22 platforms = platforms.all; 23 - maintainers = with maintainers; [ cstrahan ]; 23 + maintainers = with maintainers; [ ]; 24 24 }; 25 25 }
+1 -1
pkgs/tools/system/psensor/default.nix
··· 28 28 homepage = "https://wpitchoune.net/psensor/"; 29 29 license = licenses.mit; 30 30 platforms = platforms.linux; 31 - maintainers = with maintainers; [ cstrahan ]; 31 + maintainers = with maintainers; [ ]; 32 32 }; 33 33 }
+1 -1
pkgs/tools/system/xe/default.nix
··· 18 18 homepage = "https://github.com/chneukirchen/xe"; 19 19 license = licenses.publicDomain; 20 20 platforms = platforms.all; 21 - maintainers = with maintainers; [ cstrahan ]; 21 + maintainers = with maintainers; [ ]; 22 22 }; 23 23 }
+714
pkgs/top-level/python-packages.nix
··· 10792 10792 10793 10793 pyserial-asyncio = callPackage ../development/python-modules/pyserial-asyncio { }; 10794 10794 10795 + pyserial-asyncio-fast = callPackage ../development/python-modules/pyserial-asyncio-fast { }; 10796 + 10795 10797 pyserial = callPackage ../development/python-modules/pyserial { }; 10796 10798 10797 10799 pysftp = callPackage ../development/python-modules/pysftp { }; ··· 14160 14162 typer = callPackage ../development/python-modules/typer { }; 14161 14163 14162 14164 type-infer = callPackage ../development/python-modules/type-infer { }; 14165 + 14166 + types-aiobotocore = callPackage ../development/python-modules/types-aiobotocore { }; 14167 + 14168 + inherit (callPackage ../development/python-modules/types-aiobotocore-packages { }) 14169 + 14170 + types-aiobotocore-accessanalyzer 14171 + 14172 + types-aiobotocore-account 14173 + 14174 + types-aiobotocore-acm 14175 + 14176 + types-aiobotocore-acm-pca 14177 + 14178 + types-aiobotocore-alexaforbusiness 14179 + 14180 + types-aiobotocore-amp 14181 + 14182 + types-aiobotocore-amplify 14183 + 14184 + types-aiobotocore-amplifybackend 14185 + 14186 + types-aiobotocore-amplifyuibuilder 14187 + 14188 + types-aiobotocore-apigateway 14189 + 14190 + types-aiobotocore-apigatewaymanagementapi 14191 + 14192 + types-aiobotocore-apigatewayv2 14193 + 14194 + types-aiobotocore-appconfig 14195 + 14196 + types-aiobotocore-appconfigdata 14197 + 14198 + types-aiobotocore-appfabric 14199 + 14200 + types-aiobotocore-appflow 14201 + 14202 + types-aiobotocore-appintegrations 14203 + 14204 + types-aiobotocore-application-autoscaling 14205 + 14206 + types-aiobotocore-application-insights 14207 + 14208 + types-aiobotocore-applicationcostprofiler 14209 + 14210 + types-aiobotocore-appmesh 14211 + 14212 + types-aiobotocore-apprunner 14213 + 14214 + types-aiobotocore-appstream 14215 + 14216 + types-aiobotocore-appsync 14217 + 14218 + types-aiobotocore-arc-zonal-shift 14219 + 14220 + types-aiobotocore-athena 14221 + 14222 + types-aiobotocore-auditmanager 14223 + 14224 + types-aiobotocore-autoscaling 14225 + 14226 + types-aiobotocore-autoscaling-plans 14227 + 14228 + types-aiobotocore-backup 14229 + 14230 + types-aiobotocore-backup-gateway 14231 + 14232 + types-aiobotocore-backupstorage 14233 + 14234 + types-aiobotocore-batch 14235 + 14236 + types-aiobotocore-billingconductor 14237 + 14238 + types-aiobotocore-braket 14239 + 14240 + types-aiobotocore-budgets 14241 + 14242 + types-aiobotocore-ce 14243 + 14244 + types-aiobotocore-chime 14245 + 14246 + types-aiobotocore-chime-sdk-identity 14247 + 14248 + types-aiobotocore-chime-sdk-media-pipelines 14249 + 14250 + types-aiobotocore-chime-sdk-meetings 14251 + 14252 + types-aiobotocore-chime-sdk-messaging 14253 + 14254 + types-aiobotocore-chime-sdk-voice 14255 + 14256 + types-aiobotocore-cleanrooms 14257 + 14258 + types-aiobotocore-cloud9 14259 + 14260 + types-aiobotocore-cloudcontrol 14261 + 14262 + types-aiobotocore-clouddirectory 14263 + 14264 + types-aiobotocore-cloudformation 14265 + 14266 + types-aiobotocore-cloudfront 14267 + 14268 + types-aiobotocore-cloudhsm 14269 + 14270 + types-aiobotocore-cloudhsmv2 14271 + 14272 + types-aiobotocore-cloudsearch 14273 + 14274 + types-aiobotocore-cloudsearchdomain 14275 + 14276 + types-aiobotocore-cloudtrail 14277 + 14278 + types-aiobotocore-cloudtrail-data 14279 + 14280 + types-aiobotocore-cloudwatch 14281 + 14282 + types-aiobotocore-codeartifact 14283 + 14284 + types-aiobotocore-codebuild 14285 + 14286 + types-aiobotocore-codecatalyst 14287 + 14288 + types-aiobotocore-codecommit 14289 + 14290 + types-aiobotocore-codedeploy 14291 + 14292 + types-aiobotocore-codeguru-reviewer 14293 + 14294 + types-aiobotocore-codeguru-security 14295 + 14296 + types-aiobotocore-codeguruprofiler 14297 + 14298 + types-aiobotocore-codepipeline 14299 + 14300 + types-aiobotocore-codestar 14301 + 14302 + types-aiobotocore-codestar-connections 14303 + 14304 + types-aiobotocore-codestar-notifications 14305 + 14306 + types-aiobotocore-cognito-identity 14307 + 14308 + types-aiobotocore-cognito-idp 14309 + 14310 + types-aiobotocore-cognito-sync 14311 + 14312 + types-aiobotocore-comprehend 14313 + 14314 + types-aiobotocore-comprehendmedical 14315 + 14316 + types-aiobotocore-compute-optimizer 14317 + 14318 + types-aiobotocore-config 14319 + 14320 + types-aiobotocore-connect 14321 + 14322 + types-aiobotocore-connect-contact-lens 14323 + 14324 + types-aiobotocore-connectcampaigns 14325 + 14326 + types-aiobotocore-connectcases 14327 + 14328 + types-aiobotocore-connectparticipant 14329 + 14330 + types-aiobotocore-controltower 14331 + 14332 + types-aiobotocore-cur 14333 + 14334 + types-aiobotocore-customer-profiles 14335 + 14336 + types-aiobotocore-databrew 14337 + 14338 + types-aiobotocore-dataexchange 14339 + 14340 + types-aiobotocore-datapipeline 14341 + 14342 + types-aiobotocore-datasync 14343 + 14344 + types-aiobotocore-dax 14345 + 14346 + types-aiobotocore-detective 14347 + 14348 + types-aiobotocore-devicefarm 14349 + 14350 + types-aiobotocore-devops-guru 14351 + 14352 + types-aiobotocore-directconnect 14353 + 14354 + types-aiobotocore-discovery 14355 + 14356 + types-aiobotocore-dlm 14357 + 14358 + types-aiobotocore-dms 14359 + 14360 + types-aiobotocore-docdb 14361 + 14362 + types-aiobotocore-docdb-elastic 14363 + 14364 + types-aiobotocore-drs 14365 + 14366 + types-aiobotocore-ds 14367 + 14368 + types-aiobotocore-dynamodb 14369 + 14370 + types-aiobotocore-dynamodbstreams 14371 + 14372 + types-aiobotocore-ebs 14373 + 14374 + types-aiobotocore-ec2 14375 + 14376 + types-aiobotocore-ec2-instance-connect 14377 + 14378 + types-aiobotocore-ecr 14379 + 14380 + types-aiobotocore-ecr-public 14381 + 14382 + types-aiobotocore-ecs 14383 + 14384 + types-aiobotocore-efs 14385 + 14386 + types-aiobotocore-eks 14387 + 14388 + types-aiobotocore-elastic-inference 14389 + 14390 + types-aiobotocore-elasticache 14391 + 14392 + types-aiobotocore-elasticbeanstalk 14393 + 14394 + types-aiobotocore-elastictranscoder 14395 + 14396 + types-aiobotocore-elb 14397 + 14398 + types-aiobotocore-elbv2 14399 + 14400 + types-aiobotocore-emr 14401 + 14402 + types-aiobotocore-emr-containers 14403 + 14404 + types-aiobotocore-emr-serverless 14405 + 14406 + types-aiobotocore-entityresolution 14407 + 14408 + types-aiobotocore-es 14409 + 14410 + types-aiobotocore-events 14411 + 14412 + types-aiobotocore-evidently 14413 + 14414 + types-aiobotocore-finspace 14415 + 14416 + types-aiobotocore-finspace-data 14417 + 14418 + types-aiobotocore-firehose 14419 + 14420 + types-aiobotocore-fis 14421 + 14422 + types-aiobotocore-fms 14423 + 14424 + types-aiobotocore-forecast 14425 + 14426 + types-aiobotocore-forecastquery 14427 + 14428 + types-aiobotocore-frauddetector 14429 + 14430 + types-aiobotocore-fsx 14431 + 14432 + types-aiobotocore-gamelift 14433 + 14434 + types-aiobotocore-gamesparks 14435 + 14436 + types-aiobotocore-glacier 14437 + 14438 + types-aiobotocore-globalaccelerator 14439 + 14440 + types-aiobotocore-glue 14441 + 14442 + types-aiobotocore-grafana 14443 + 14444 + types-aiobotocore-greengrass 14445 + 14446 + types-aiobotocore-greengrassv2 14447 + 14448 + types-aiobotocore-groundstation 14449 + 14450 + types-aiobotocore-guardduty 14451 + 14452 + types-aiobotocore-health 14453 + 14454 + types-aiobotocore-healthlake 14455 + 14456 + types-aiobotocore-honeycode 14457 + 14458 + types-aiobotocore-iam 14459 + 14460 + types-aiobotocore-identitystore 14461 + 14462 + types-aiobotocore-imagebuilder 14463 + 14464 + types-aiobotocore-importexport 14465 + 14466 + types-aiobotocore-inspector 14467 + 14468 + types-aiobotocore-inspector2 14469 + 14470 + types-aiobotocore-internetmonitor 14471 + 14472 + types-aiobotocore-iot 14473 + 14474 + types-aiobotocore-iot-data 14475 + 14476 + types-aiobotocore-iot-jobs-data 14477 + 14478 + types-aiobotocore-iot-roborunner 14479 + 14480 + types-aiobotocore-iot1click-devices 14481 + 14482 + types-aiobotocore-iot1click-projects 14483 + 14484 + types-aiobotocore-iotanalytics 14485 + 14486 + types-aiobotocore-iotdeviceadvisor 14487 + 14488 + types-aiobotocore-iotevents 14489 + 14490 + types-aiobotocore-iotevents-data 14491 + 14492 + types-aiobotocore-iotfleethub 14493 + 14494 + types-aiobotocore-iotfleetwise 14495 + 14496 + types-aiobotocore-iotsecuretunneling 14497 + 14498 + types-aiobotocore-iotsitewise 14499 + 14500 + types-aiobotocore-iotthingsgraph 14501 + 14502 + types-aiobotocore-iottwinmaker 14503 + 14504 + types-aiobotocore-iotwireless 14505 + 14506 + types-aiobotocore-ivs 14507 + 14508 + types-aiobotocore-ivs-realtime 14509 + 14510 + types-aiobotocore-ivschat 14511 + 14512 + types-aiobotocore-kafka 14513 + 14514 + types-aiobotocore-kafkaconnect 14515 + 14516 + types-aiobotocore-kendra 14517 + 14518 + types-aiobotocore-kendra-ranking 14519 + 14520 + types-aiobotocore-keyspaces 14521 + 14522 + types-aiobotocore-kinesis 14523 + 14524 + types-aiobotocore-kinesis-video-archived-media 14525 + 14526 + types-aiobotocore-kinesis-video-media 14527 + 14528 + types-aiobotocore-kinesis-video-signaling 14529 + 14530 + types-aiobotocore-kinesis-video-webrtc-storage 14531 + 14532 + types-aiobotocore-kinesisanalytics 14533 + 14534 + types-aiobotocore-kinesisanalyticsv2 14535 + 14536 + types-aiobotocore-kinesisvideo 14537 + 14538 + types-aiobotocore-kms 14539 + 14540 + types-aiobotocore-lakeformation 14541 + 14542 + types-aiobotocore-lambda 14543 + 14544 + types-aiobotocore-lex-models 14545 + 14546 + types-aiobotocore-lex-runtime 14547 + 14548 + types-aiobotocore-lexv2-models 14549 + 14550 + types-aiobotocore-lexv2-runtime 14551 + 14552 + types-aiobotocore-license-manager 14553 + 14554 + types-aiobotocore-license-manager-linux-subscriptions 14555 + 14556 + types-aiobotocore-license-manager-user-subscriptions 14557 + 14558 + types-aiobotocore-lightsail 14559 + 14560 + types-aiobotocore-location 14561 + 14562 + types-aiobotocore-logs 14563 + 14564 + types-aiobotocore-lookoutequipment 14565 + 14566 + types-aiobotocore-lookoutmetrics 14567 + 14568 + types-aiobotocore-lookoutvision 14569 + 14570 + types-aiobotocore-m2 14571 + 14572 + types-aiobotocore-machinelearning 14573 + 14574 + types-aiobotocore-macie 14575 + 14576 + types-aiobotocore-macie2 14577 + 14578 + types-aiobotocore-managedblockchain 14579 + 14580 + types-aiobotocore-managedblockchain-query 14581 + 14582 + types-aiobotocore-marketplace-catalog 14583 + 14584 + types-aiobotocore-marketplace-entitlement 14585 + 14586 + types-aiobotocore-marketplacecommerceanalytics 14587 + 14588 + types-aiobotocore-mediaconnect 14589 + 14590 + types-aiobotocore-mediaconvert 14591 + 14592 + types-aiobotocore-medialive 14593 + 14594 + types-aiobotocore-mediapackage 14595 + 14596 + types-aiobotocore-mediapackage-vod 14597 + 14598 + types-aiobotocore-mediapackagev2 14599 + 14600 + types-aiobotocore-mediastore 14601 + 14602 + types-aiobotocore-mediastore-data 14603 + 14604 + types-aiobotocore-mediatailor 14605 + 14606 + types-aiobotocore-medical-imaging 14607 + 14608 + types-aiobotocore-memorydb 14609 + 14610 + types-aiobotocore-meteringmarketplace 14611 + 14612 + types-aiobotocore-mgh 14613 + 14614 + types-aiobotocore-mgn 14615 + 14616 + types-aiobotocore-migration-hub-refactor-spaces 14617 + 14618 + types-aiobotocore-migrationhub-config 14619 + 14620 + types-aiobotocore-migrationhuborchestrator 14621 + 14622 + types-aiobotocore-migrationhubstrategy 14623 + 14624 + types-aiobotocore-mobile 14625 + 14626 + types-aiobotocore-mq 14627 + 14628 + types-aiobotocore-mturk 14629 + 14630 + types-aiobotocore-mwaa 14631 + 14632 + types-aiobotocore-neptune 14633 + 14634 + types-aiobotocore-network-firewall 14635 + 14636 + types-aiobotocore-networkmanager 14637 + 14638 + types-aiobotocore-nimble 14639 + 14640 + types-aiobotocore-oam 14641 + 14642 + types-aiobotocore-omics 14643 + 14644 + types-aiobotocore-opensearch 14645 + 14646 + types-aiobotocore-opensearchserverless 14647 + 14648 + types-aiobotocore-opsworks 14649 + 14650 + types-aiobotocore-opsworkscm 14651 + 14652 + types-aiobotocore-organizations 14653 + 14654 + types-aiobotocore-osis 14655 + 14656 + types-aiobotocore-outposts 14657 + 14658 + types-aiobotocore-panorama 14659 + 14660 + types-aiobotocore-payment-cryptography 14661 + 14662 + types-aiobotocore-payment-cryptography-data 14663 + 14664 + types-aiobotocore-personalize 14665 + 14666 + types-aiobotocore-personalize-events 14667 + 14668 + types-aiobotocore-personalize-runtime 14669 + 14670 + types-aiobotocore-pi 14671 + 14672 + types-aiobotocore-pinpoint 14673 + 14674 + types-aiobotocore-pinpoint-email 14675 + 14676 + types-aiobotocore-pinpoint-sms-voice 14677 + 14678 + types-aiobotocore-pinpoint-sms-voice-v2 14679 + 14680 + types-aiobotocore-pipes 14681 + 14682 + types-aiobotocore-polly 14683 + 14684 + types-aiobotocore-pricing 14685 + 14686 + types-aiobotocore-privatenetworks 14687 + 14688 + types-aiobotocore-proton 14689 + 14690 + types-aiobotocore-qldb 14691 + 14692 + types-aiobotocore-qldb-session 14693 + 14694 + types-aiobotocore-quicksight 14695 + 14696 + types-aiobotocore-ram 14697 + 14698 + types-aiobotocore-rbin 14699 + 14700 + types-aiobotocore-rds 14701 + 14702 + types-aiobotocore-rds-data 14703 + 14704 + types-aiobotocore-redshift 14705 + 14706 + types-aiobotocore-redshift-data 14707 + 14708 + types-aiobotocore-redshift-serverless 14709 + 14710 + types-aiobotocore-rekognition 14711 + 14712 + types-aiobotocore-resiliencehub 14713 + 14714 + types-aiobotocore-resource-explorer-2 14715 + 14716 + types-aiobotocore-resource-groups 14717 + 14718 + types-aiobotocore-resourcegroupstaggingapi 14719 + 14720 + types-aiobotocore-robomaker 14721 + 14722 + types-aiobotocore-rolesanywhere 14723 + 14724 + types-aiobotocore-route53 14725 + 14726 + types-aiobotocore-route53-recovery-cluster 14727 + 14728 + types-aiobotocore-route53-recovery-control-config 14729 + 14730 + types-aiobotocore-route53-recovery-readiness 14731 + 14732 + types-aiobotocore-route53domains 14733 + 14734 + types-aiobotocore-route53resolver 14735 + 14736 + types-aiobotocore-rum 14737 + 14738 + types-aiobotocore-s3 14739 + 14740 + types-aiobotocore-s3control 14741 + 14742 + types-aiobotocore-s3outposts 14743 + 14744 + types-aiobotocore-sagemaker 14745 + 14746 + types-aiobotocore-sagemaker-a2i-runtime 14747 + 14748 + types-aiobotocore-sagemaker-edge 14749 + 14750 + types-aiobotocore-sagemaker-featurestore-runtime 14751 + 14752 + types-aiobotocore-sagemaker-geospatial 14753 + 14754 + types-aiobotocore-sagemaker-metrics 14755 + 14756 + types-aiobotocore-sagemaker-runtime 14757 + 14758 + types-aiobotocore-savingsplans 14759 + 14760 + types-aiobotocore-scheduler 14761 + 14762 + types-aiobotocore-schemas 14763 + 14764 + types-aiobotocore-sdb 14765 + 14766 + types-aiobotocore-secretsmanager 14767 + 14768 + types-aiobotocore-securityhub 14769 + 14770 + types-aiobotocore-securitylake 14771 + 14772 + types-aiobotocore-serverlessrepo 14773 + 14774 + types-aiobotocore-service-quotas 14775 + 14776 + types-aiobotocore-servicecatalog 14777 + 14778 + types-aiobotocore-servicecatalog-appregistry 14779 + 14780 + types-aiobotocore-servicediscovery 14781 + 14782 + types-aiobotocore-ses 14783 + 14784 + types-aiobotocore-sesv2 14785 + 14786 + types-aiobotocore-shield 14787 + 14788 + types-aiobotocore-signer 14789 + 14790 + types-aiobotocore-simspaceweaver 14791 + 14792 + types-aiobotocore-sms 14793 + 14794 + types-aiobotocore-sms-voice 14795 + 14796 + types-aiobotocore-snow-device-management 14797 + 14798 + types-aiobotocore-snowball 14799 + 14800 + types-aiobotocore-sns 14801 + 14802 + types-aiobotocore-sqs 14803 + 14804 + types-aiobotocore-ssm 14805 + 14806 + types-aiobotocore-ssm-contacts 14807 + 14808 + types-aiobotocore-ssm-incidents 14809 + 14810 + types-aiobotocore-ssm-sap 14811 + 14812 + types-aiobotocore-sso 14813 + 14814 + types-aiobotocore-sso-admin 14815 + 14816 + types-aiobotocore-sso-oidc 14817 + 14818 + types-aiobotocore-stepfunctions 14819 + 14820 + types-aiobotocore-storagegateway 14821 + 14822 + types-aiobotocore-sts 14823 + 14824 + types-aiobotocore-support 14825 + 14826 + types-aiobotocore-support-app 14827 + 14828 + types-aiobotocore-swf 14829 + 14830 + types-aiobotocore-synthetics 14831 + 14832 + types-aiobotocore-textract 14833 + 14834 + types-aiobotocore-timestream-query 14835 + 14836 + types-aiobotocore-timestream-write 14837 + 14838 + types-aiobotocore-tnb 14839 + 14840 + types-aiobotocore-transcribe 14841 + 14842 + types-aiobotocore-transfer 14843 + 14844 + types-aiobotocore-translate 14845 + 14846 + types-aiobotocore-verifiedpermissions 14847 + 14848 + types-aiobotocore-voice-id 14849 + 14850 + types-aiobotocore-vpc-lattice 14851 + 14852 + types-aiobotocore-waf 14853 + 14854 + types-aiobotocore-waf-regional 14855 + 14856 + types-aiobotocore-wafv2 14857 + 14858 + types-aiobotocore-wellarchitected 14859 + 14860 + types-aiobotocore-wisdom 14861 + 14862 + types-aiobotocore-workdocs 14863 + 14864 + types-aiobotocore-worklink 14865 + 14866 + types-aiobotocore-workmail 14867 + 14868 + types-aiobotocore-workmailmessageflow 14869 + 14870 + types-aiobotocore-workspaces 14871 + 14872 + types-aiobotocore-workspaces-web 14873 + 14874 + types-aiobotocore-xray 14875 + 14876 + ; 14163 14877 14164 14878 types-appdirs = callPackage ../development/python-modules/types-appdirs { }; 14165 14879