From 9cc8e11298ba17ffcbfc933e3c8a7632cd365ad4 Mon Sep 17 00:00:00 2001 From: Ananth Bhaskararaman Date: Sat, 5 Jul 2025 14:55:42 +0530 Subject: [PATCH 01/16] maintainers: add ananthb --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index cf10b8a6e0f3..ac1ad5f309cd 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1481,6 +1481,12 @@ github = "an-empty-string"; githubId = 681716; }; + ananthb = { + name = "Ananth Bhaskararaman"; + email = "nixos-maint@devhuman.net"; + github = "ananthb"; + githubId = 3133350; + }; anas = { email = "anas.elgarhy.dev@gmail.com"; github = "0x61nas"; From fee4d7aa5fcf4fc48272b5b36529d89e7db81eed Mon Sep 17 00:00:00 2001 From: Ananth Bhaskararaman Date: Sat, 5 Jul 2025 00:07:26 +0530 Subject: [PATCH 02/16] python3Packages.miraie-ac: init at 1.1.1 --- .../python-modules/miraie-ac/default.nix | 45 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/python-modules/miraie-ac/default.nix diff --git a/pkgs/development/python-modules/miraie-ac/default.nix b/pkgs/development/python-modules/miraie-ac/default.nix new file mode 100644 index 000000000000..990535a947af --- /dev/null +++ b/pkgs/development/python-modules/miraie-ac/default.nix @@ -0,0 +1,45 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + + # build-system + poetry-core, + + # dependencies + aiomqtt, + aiohttp, + certifi, +}: + +buildPythonPackage rec { + pname = "miraie-ac"; + version = "1.1.1"; + pyproject = true; + + src = fetchPypi { + inherit version; + pname = "miraie_ac"; + hash = "sha256-IiRDPz5IcD3Df+vw4YvR3zc0oThGjb7pBJfD4d98h/g="; + }; + + build-system = [ poetry-core ]; + + dependencies = [ + aiomqtt + aiohttp + certifi + ]; + + pythonRemoveDeps = [ "asyncio" ]; + + pythonImportsCheck = [ "miraie_ac" ]; + + meta = { + homepage = "https://github.com/rkzofficial/miraie-ac"; + changelog = "https://github.com/rkzofficial/miraie-ac/releases"; + description = "Python library for controlling Panasonic Miraie ACs"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ananthb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index afa1603bc669..deffaafb203a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9227,6 +9227,8 @@ self: super: with self; { mir-eval = callPackage ../development/python-modules/mir-eval { }; + miraie-ac = callPackage ../development/python-modules/miraie-ac { }; + mirakuru = callPackage ../development/python-modules/mirakuru { }; misaka = callPackage ../development/python-modules/misaka { }; From 5f007ccf2aee5c9f96348b23de0544389e852c51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 11 Aug 2025 13:54:56 -0700 Subject: [PATCH 03/16] esptool: 4.9.0 -> 5.0.2 Diff: https://github.com/espressif/esptool/compare/refs/tags/v4.9.0...refs/tags/v5.0.2 Changelog: https://github.com/espressif/esptool/blob/v5.0.2/CHANGELOG.md --- pkgs/by-name/es/esptool/package.nix | 40 ++++++++++++++--------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/pkgs/by-name/es/esptool/package.nix b/pkgs/by-name/es/esptool/package.nix index b834089d6fd5..171d821d561b 100644 --- a/pkgs/by-name/es/esptool/package.nix +++ b/pkgs/by-name/es/esptool/package.nix @@ -7,14 +7,14 @@ python3Packages.buildPythonApplication rec { pname = "esptool"; - version = "4.9.0"; + version = "5.0.2"; pyproject = true; src = fetchFromGitHub { owner = "espressif"; repo = "esptool"; tag = "v${version}"; - hash = "sha256-iIFjInqiqjeqiDYL7BU3vT99pCVnu8OhU7u9uKwe/SI="; + hash = "sha256-oRvtEBp88tmgjjIuoQS5ySm4I0aD/Zs8VLRUZo0sh/I="; }; postPatch = '' @@ -29,14 +29,14 @@ python3Packages.buildPythonApplication rec { ]; dependencies = with python3Packages; [ - argcomplete bitstring + click cryptography - ecdsa intelhex pyserial - reedsolo pyyaml + reedsolo + rich-click ]; optional-dependencies = with python3Packages; { @@ -48,39 +48,39 @@ python3Packages.buildPythonApplication rec { [ pyelftools pytestCheckHook + requests softhsm ] ++ lib.flatten (lib.attrValues optional-dependencies); - # tests mentioned in `.github/workflows/test_esptool.yml` - checkPhase = '' - runHook preCheck + preCheck = '' + export PATH="$out/bin:$PATH" + ''; + pytestFlags = [ + "-m" + "host_test" + ]; + + postCheck = '' export SOFTHSM2_CONF=$(mktemp) echo "directories.tokendir = $(mktemp -d)" > "$SOFTHSM2_CONF" ./ci/setup_softhsm2.sh - pytest test/test_imagegen.py - pytest test/test_espsecure.py pytest test/test_espsecure_hsm.py - pytest test/test_merge_bin.py - pytest test/test_image_info.py - pytest test/test_modules.py - - runHook postCheck ''; - meta = with lib; { + meta = { changelog = "https://github.com/espressif/esptool/blob/${src.tag}/CHANGELOG.md"; description = "ESP8266 and ESP32 serial bootloader utility"; homepage = "https://github.com/espressif/esptool"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ dezgeg dotlambda ]; teams = [ lib.teams.lumiguide ]; - platforms = with platforms; linux ++ darwin; - mainProgram = "esptool.py"; + platforms = with lib.platforms; linux ++ darwin; + mainProgram = "esptool"; }; } From 53464c98d83b36f0b4fb571db1321a68dcced689 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 16 Aug 2025 14:42:24 +0000 Subject: [PATCH 04/16] enzyme: 0.0.188 -> 0.0.189 --- pkgs/by-name/en/enzyme/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/en/enzyme/package.nix b/pkgs/by-name/en/enzyme/package.nix index a4a325303032..30f2f62b16aa 100644 --- a/pkgs/by-name/en/enzyme/package.nix +++ b/pkgs/by-name/en/enzyme/package.nix @@ -7,13 +7,13 @@ }: llvmPackages.stdenv.mkDerivation rec { pname = "enzyme"; - version = "0.0.188"; + version = "0.0.189"; src = fetchFromGitHub { owner = "EnzymeAD"; repo = "Enzyme"; rev = "v${version}"; - hash = "sha256-CoImpu1Hwn11s+6GeYPIyaIHz7kdjrBMpbxAUzaJWZU="; + hash = "sha256-fjKu8H24RuDGmMjN4SphdQw6g8FLS0Xc+STjgx7hiq4="; }; postPatch = '' From cc8d978de7783b71395e4259de0886b272ee898e Mon Sep 17 00:00:00 2001 From: Weijia Wang <9713184+wegank@users.noreply.github.com> Date: Mon, 18 Aug 2025 21:20:33 +0200 Subject: [PATCH 05/16] rapidjson: disable tests when valgrind is unavailable --- pkgs/by-name/ra/rapidjson/package.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ra/rapidjson/package.nix b/pkgs/by-name/ra/rapidjson/package.nix index b2cea36a49f1..44f01c91763e 100644 --- a/pkgs/by-name/ra/rapidjson/package.nix +++ b/pkgs/by-name/ra/rapidjson/package.nix @@ -69,7 +69,9 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeFeature "CMAKE_CXX_FLAGS_RELEASE" "-Wno-error") ]; - doCheck = !(stdenv.hostPlatform.isStatic || stdenv.hostPlatform.isDarwin); + doCheck = + !(stdenv.hostPlatform.isStatic || stdenv.hostPlatform.isDarwin) + && lib.meta.availableOn stdenv.hostPlatform valgrind; nativeCheckInputs = [ valgrind From aca84937284a7666da885a116e64968cbb0056bd Mon Sep 17 00:00:00 2001 From: Jost Alemann Date: Mon, 18 Aug 2025 23:38:57 +0200 Subject: [PATCH 06/16] harper: 0.57.0 -> 0.58.0 Changelog: https://github.com/Automattic/harper/releases/tag/v0.58.0 Diff: https://github.com/Automattic/harper/compare/v0.57.0...v0.58.0 --- pkgs/by-name/ha/harper/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ha/harper/package.nix b/pkgs/by-name/ha/harper/package.nix index 8a0cd15bf724..7b43bdab13f5 100644 --- a/pkgs/by-name/ha/harper/package.nix +++ b/pkgs/by-name/ha/harper/package.nix @@ -7,18 +7,18 @@ rustPlatform.buildRustPackage rec { pname = "harper"; - version = "0.57.0"; + version = "0.58.0"; src = fetchFromGitHub { owner = "Automattic"; repo = "harper"; rev = "v${version}"; - hash = "sha256-w9nDvjAFPd2cVJhOigGW61RZAsqo64EN1AFdeAIiAQ0="; + hash = "sha256-KGi/toi02JPDYdNvrhIg9hh+188C5jP41Zk3IKOgO/E="; }; buildAndTestSubdir = "harper-ls"; - cargoHash = "sha256-Ljkrpk1O+WXL0GDBv7sJbSllJuhoLXMLgFfi4sI50fE="; + cargoHash = "sha256-Er056RhUW33UrRMP412/tj+Qa878Jk+nIcFuF8Ytaes="; passthru.updateScript = nix-update-script { }; From 6b329e8f87fd2fa7a6b93b8101ea4e197465e2f0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Aug 2025 13:55:17 +0000 Subject: [PATCH 07/16] python3Packages.rocketchat-api: 1.35.1 -> 1.35.2 --- pkgs/development/python-modules/rocketchat-api/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/rocketchat-api/default.nix b/pkgs/development/python-modules/rocketchat-api/default.nix index eb49e8fff825..2fd6b8dd5cc1 100644 --- a/pkgs/development/python-modules/rocketchat-api/default.nix +++ b/pkgs/development/python-modules/rocketchat-api/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "rocketchat-api"; - version = "1.35.1"; + version = "1.35.2"; pyproject = true; src = fetchFromGitHub { owner = "jadolg"; repo = "rocketchat_API"; tag = version; - hash = "sha256-8HGu/vkth6ofZD05Pc+IlTZlT+12jWTTYINLQzAHExk="; + hash = "sha256-U5r7SKCKneBgCSwCJRm+Tl/wPmMOrj93K5VVCO/OPCk="; }; build-system = [ setuptools ]; From 8a16a2522b4c42e9edc9a0c215c294b347c1e559 Mon Sep 17 00:00:00 2001 From: Ananth Bhaskararaman Date: Sun, 20 Jul 2025 15:24:17 +0530 Subject: [PATCH 08/16] home-assistant-custom-components.miraie: init at 1.1.6 --- .../custom-components/miraie/package.nix | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pkgs/servers/home-assistant/custom-components/miraie/package.nix diff --git a/pkgs/servers/home-assistant/custom-components/miraie/package.nix b/pkgs/servers/home-assistant/custom-components/miraie/package.nix new file mode 100644 index 000000000000..92d11cb020b0 --- /dev/null +++ b/pkgs/servers/home-assistant/custom-components/miraie/package.nix @@ -0,0 +1,36 @@ +{ + lib, + buildHomeAssistantComponent, + fetchFromGitHub, + miraie-ac, + aiomqtt, + nix-update-script, +}: + +buildHomeAssistantComponent rec { + owner = "rkzofficial"; + domain = "miraie"; + version = "1.1.6"; + + src = fetchFromGitHub { + owner = "rkzofficial"; + repo = "ha-miraie-ac"; + tag = "v${version}"; + hash = "sha256-5VpLfTKOLdx8P693jaW4o79CH2NKkgkgl7ai+I6JRQs="; + }; + + dependencies = [ + miraie-ac + aiomqtt + ]; + + passthru.updateScript = nix-update-script { }; + + meta = { + changelog = "https://github.com/rkzofficial/ha-miraie-ac/releases/tag/v${version}"; + description = "Home Assistant component for Miraie ACs"; + homepage = "https://github.com/rkzofficial/ha-miraie-ac"; + maintainers = with lib.maintainers; [ ananthb ]; + license = lib.licenses.asl20; + }; +} From 6d6494f9597884569ea81d8c53bec598a474663c Mon Sep 17 00:00:00 2001 From: David Morgan Date: Tue, 19 Aug 2025 17:35:29 +0100 Subject: [PATCH 09/16] tmuxPlugins.extrakto: 0-unstable-2024-08-25 -> 0-unstable-2025-07-27 --- pkgs/misc/tmux-plugins/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 53edf5bb6a08..9eefc01cd093 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -260,12 +260,12 @@ in extrakto = mkTmuxPlugin { pluginName = "extrakto"; - version = "0-unstable-2024-08-25"; + version = "0-unstable-2025-07-27"; src = fetchFromGitHub { owner = "laktak"; repo = "extrakto"; - rev = "bf9e666f2a6a8172ebe99fff61b574ba740cffc2"; - hash = "sha256-kIhJKgo1BDTeFyAPa//f/TrhPfV9Rfk9y4qMhIpCydk="; + rev = "b04dcf14496ffda629d8aa3a2ac63e4e08d2fdc9"; + hash = "sha256-lknfek9Fu/RDHbq5HMaiNqc24deni5phzExWOkYRS+o"; }; nativeBuildInputs = [ pkgs.makeWrapper ]; buildInputs = [ pkgs.python3 ]; @@ -292,6 +292,7 @@ in maintainers = with lib.maintainers; [ kidd fnune + deejayem ]; }; }; From 3bf28ea2aa16db411082f07b246004f133e762df Mon Sep 17 00:00:00 2001 From: NilaTheDragon Date: Tue, 19 Aug 2025 22:01:30 +0200 Subject: [PATCH 10/16] python3Packages.tidalapi: 0.8.5 -> 0.8.6 --- pkgs/development/python-modules/tidalapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tidalapi/default.nix b/pkgs/development/python-modules/tidalapi/default.nix index 7fa8cb88f628..1170912f82a1 100644 --- a/pkgs/development/python-modules/tidalapi/default.nix +++ b/pkgs/development/python-modules/tidalapi/default.nix @@ -12,14 +12,14 @@ }: buildPythonPackage rec { pname = "tidalapi"; - version = "0.8.5"; + version = "0.8.6"; pyproject = true; src = fetchFromGitHub { owner = "EbbLabs"; repo = "python-tidal"; tag = "v${version}"; - hash = "sha256-DI1EtjwHGsdneyW3Av6ZEWoKf0MzkXs0NJkD55W5pD0="; + hash = "sha256-SsyO0bh2ayHfGzINBW1BTTPS/ICvIymIhQ1HUPRFOwU="; }; build-system = [ From a0c17836f0b41ab04f6ad82748aa596c08dfae5d Mon Sep 17 00:00:00 2001 From: Rishi Desai Date: Mon, 18 Aug 2025 21:38:57 -0500 Subject: [PATCH 11/16] rerun: fix wasm --no-modules build failure --- pkgs/by-name/re/rerun/package.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/re/rerun/package.nix b/pkgs/by-name/re/rerun/package.nix index 952db5881c20..8bbebaa4fcd9 100644 --- a/pkgs/by-name/re/rerun/package.nix +++ b/pkgs/by-name/re/rerun/package.nix @@ -6,6 +6,7 @@ # nativeBuildInputs binaryen, lld, + llvmPackages, pkg-config, protobuf, rustfmt, @@ -31,7 +32,6 @@ "map_view" ], }: - rustPlatform.buildRustPackage (finalAttrs: { pname = "rerun"; version = "0.24.0"; @@ -99,6 +99,24 @@ rustPlatform.buildRustPackage (finalAttrs: { nasm ]; + # NOTE: Without setting these environment variables the web-viewer + # preBuild step uses the nix wrapped CC which doesn't support + # multiple targets including wasm32-unknown-unknown. These are taken + # from the following issue discussion in the rust ring crate: + # https://github.com/briansmith/ring/discussions/2581#discussioncomment-14096969 + env = + let + inherit (llvmPackages) clang-unwrapped; + major-version = builtins.head (builtins.splitVersion clang-unwrapped.version); + # resource dir + builtins from the unwrapped clang + resourceDir = "${lib.getLib clang-unwrapped}/lib/clang/${major-version}"; + includeDir = "${lib.getLib llvmPackages.libclang}/lib/clang/${major-version}/include"; + in + { + CC_wasm32_unknown_unknown = lib.getExe clang-unwrapped; + CFLAGS_wasm32_unknown_unknown = "-isystem ${includeDir} -resource-dir ${resourceDir}"; + }; + buildInputs = [ freetype glib From b205be0e21458acef59b3abb2801abd8c1a511c7 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Aug 2025 22:12:13 +0000 Subject: [PATCH 12/16] niriswitcher: 0.7.0 -> 0.7.1 --- pkgs/by-name/ni/niriswitcher/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ni/niriswitcher/package.nix b/pkgs/by-name/ni/niriswitcher/package.nix index cf17593dcc6d..761a9d8f187a 100644 --- a/pkgs/by-name/ni/niriswitcher/package.nix +++ b/pkgs/by-name/ni/niriswitcher/package.nix @@ -11,14 +11,14 @@ python3Packages.buildPythonPackage rec { pname = "niriswitcher"; - version = "0.7.0"; + version = "0.7.1"; pyproject = true; src = fetchFromGitHub { owner = "isaksamsten"; repo = "niriswitcher"; tag = version; - hash = "sha256-V3G4eKKEysCyjAFUW2a94lOo82TVaZVfRXv/dL+LHNo="; + hash = "sha256-qsw2D9Q9ZJYBsRECzT+qoytYMda4uZxX321/YxNWk9o="; }; build-system = [ python3Packages.hatchling ]; From fb8abe4158608ff2c46d76584c8ba4fb71e05106 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 19 Aug 2025 23:52:53 +0000 Subject: [PATCH 13/16] pkgsite: 0-unstable-2025-07-21 -> 0-unstable-2025-08-14 --- pkgs/by-name/pk/pkgsite/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/pk/pkgsite/package.nix b/pkgs/by-name/pk/pkgsite/package.nix index d521e16bb890..3218c9e426d0 100644 --- a/pkgs/by-name/pk/pkgsite/package.nix +++ b/pkgs/by-name/pk/pkgsite/package.nix @@ -7,16 +7,16 @@ buildGoModule { pname = "pkgsite"; - version = "0-unstable-2025-07-21"; + version = "0-unstable-2025-08-14"; src = fetchFromGitHub { owner = "golang"; repo = "pkgsite"; - rev = "d4de6668b91034bd7c6315aff98f232c1339335f"; - hash = "sha256-H3yL82obJ/z8BDeyLdR1DVCxsPwrn0xxHLoMFHKhQn8="; + rev = "ed9d06afb3a5d788c2bd4d6eef1b2a667cff4782"; + hash = "sha256-HROCrvfpHiRmZSE+P9uL5mwqkcI9uwxFEI7fSjzOHiI="; }; - vendorHash = "sha256-sHpWI3oUuazFlWJhHB5uZ89z1GPbPfLoFQL12Jk3NP0="; + vendorHash = "sha256-MUd0AGYDLx6o1uItjk3UVHBIXfPjN6AjjhYQCz5BIeQ="; subPackages = [ "cmd/pkgsite" ]; From 4c75542c64411e50e02a3c6d5ccbb805366a8042 Mon Sep 17 00:00:00 2001 From: Arthur Gautier Date: Sat, 16 Aug 2025 20:59:08 -0700 Subject: [PATCH 14/16] gow: init at 0-unstable-2025-08-13 Signed-off-by: Arthur Gautier --- pkgs/by-name/go/gow/package.nix | 38 +++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 pkgs/by-name/go/gow/package.nix diff --git a/pkgs/by-name/go/gow/package.nix b/pkgs/by-name/go/gow/package.nix new file mode 100644 index 000000000000..0d6ffc81d47b --- /dev/null +++ b/pkgs/by-name/go/gow/package.nix @@ -0,0 +1,38 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + makeWrapper, + go, +}: + +buildGoModule (finalAttrs: { + pname = "gow"; + version = "0-unstable-2025-08-13"; + + src = fetchFromGitHub { + owner = "mitranim"; + repo = "gow"; + rev = "466e175ff6996eba082cb86ac7b43fc5f8f9c766"; + hash = "sha256-vfJ6AFkCeyGKWF/a26ulyErCjCng+uHJlLyRfBmtLs0="; + }; + + vendorHash = "sha256-L7H3tZQXfeDtWLMvxSMf4/Oez8OV5Q+NhKLkJ991sNA="; + + # This is required for wrapProgram. + allowGoReference = true; + + nativeBuildInputs = [ makeWrapper ]; + + postFixup = '' + wrapProgram $out/bin/gow --prefix PATH : ${lib.makeBinPath [ go ]} + ''; + + meta = { + homepage = "https://github.com/mitranim/gow"; + description = "Missing watch mode for Go commands"; + mainProgram = "gox"; + license = lib.licenses.unlicense; + maintainers = with lib.maintainers; [ baloo ]; + }; +}) From a470e1105be7310fa62160e29ebf719a84f879fd Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 20 Aug 2025 02:37:27 +0000 Subject: [PATCH 15/16] python3Packages.aioamazondevices: 4.0.0 -> 4.0.1 --- pkgs/development/python-modules/aioamazondevices/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aioamazondevices/default.nix b/pkgs/development/python-modules/aioamazondevices/default.nix index c7f7fdc0e987..817451a12539 100644 --- a/pkgs/development/python-modules/aioamazondevices/default.nix +++ b/pkgs/development/python-modules/aioamazondevices/default.nix @@ -15,14 +15,14 @@ buildPythonPackage rec { pname = "aioamazondevices"; - version = "4.0.0"; + version = "4.0.1"; pyproject = true; src = fetchFromGitHub { owner = "chemelli74"; repo = "aioamazondevices"; tag = "v${version}"; - hash = "sha256-Ch3IP7fMEDYYRFDk3eoZWjhjnkQY0qcAFJdmkoW4o/0="; + hash = "sha256-FTIACTsDFg+TUvtQOI46ecOZxFmyeUSlOZm9xXAlkhY="; }; build-system = [ poetry-core ]; From c2be4f07e8c58cae0c6875e42797c7f3aaaa0988 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 20 Aug 2025 04:50:15 +0000 Subject: [PATCH 16/16] python3Packages.google-genai: 1.29.0 -> 1.31.0 --- pkgs/development/python-modules/google-genai/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-genai/default.nix b/pkgs/development/python-modules/google-genai/default.nix index e37cce0dfe31..3962d195d8bf 100644 --- a/pkgs/development/python-modules/google-genai/default.nix +++ b/pkgs/development/python-modules/google-genai/default.nix @@ -20,14 +20,14 @@ buildPythonPackage rec { pname = "google-genai"; - version = "1.29.0"; + version = "1.31.0"; pyproject = true; src = fetchFromGitHub { owner = "googleapis"; repo = "python-genai"; tag = "v${version}"; - hash = "sha256-EOwIXZ373hsEfGxCE6DRjPRuqPQQoFHTzIDGK1K9X6Q="; + hash = "sha256-pzW0SYLlj7XjJSEqCY3uSYZI8asn451LANpcpr/lxI4="; }; build-system = [