From 2d37079853d5975b19c95c3e82736d4c66880868 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Thu, 18 Apr 2024 00:01:34 +0200 Subject: [PATCH] python312Packages.uptime-kuma-api: unbreak with missing dependency --- pkgs/development/python-modules/uptime-kuma-api/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/uptime-kuma-api/default.nix b/pkgs/development/python-modules/uptime-kuma-api/default.nix index 1d7db943ad81..f1f086c2661b 100644 --- a/pkgs/development/python-modules/uptime-kuma-api/default.nix +++ b/pkgs/development/python-modules/uptime-kuma-api/default.nix @@ -1,6 +1,7 @@ { lib , buildPythonPackage , fetchPypi +, packaging , python-socketio , pythonOlder }: @@ -19,6 +20,7 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ + packaging python-socketio python-socketio.optional-dependencies.client ];