From 09fc1dfd42724e0e5b959429426de8abf86f5f13 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 24 Aug 2026 12:34:27 +0200 Subject: [PATCH] python3Packages.aiomisc: 17.10.3 -> 18.0.26 Changelog: https://github.com/aiokitchen/aiomisc/blob/master/CHANGELOG.md --- pkgs/development/python-modules/aiomisc/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiomisc/default.nix b/pkgs/development/python-modules/aiomisc/default.nix index 93afe50e7fcd..7674a8eba6c3 100644 --- a/pkgs/development/python-modules/aiomisc/default.nix +++ b/pkgs/development/python-modules/aiomisc/default.nix @@ -3,6 +3,7 @@ stdenv, aiocontextvars, aiohttp, + aiothreads, async-timeout, buildPythonPackage, colorlog, @@ -21,12 +22,12 @@ buildPythonPackage (finalAttrs: { pname = "aiomisc"; - version = "17.10.3"; + version = "18.0.26"; pyproject = true; src = fetchPypi { inherit (finalAttrs) pname version; - hash = "sha256-24ka982Wx4Bk2TlWuw6pvfRLh47l8QJvHD+sc+LOxVY="; + hash = "sha256-wsTl43LQHMyHSMKlZzCV5KmcdUMJQA51ZljBuLMiUTg="; }; build-system = [ @@ -35,6 +36,7 @@ buildPythonPackage (finalAttrs: { ]; dependencies = [ + aiothreads colorlog ] ++ lib.optionals stdenv.hostPlatform.isLinux [ logging-journald ];