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 ];