From b809a638173f5fde716c289d875edcb274c766b1 Mon Sep 17 00:00:00 2001 From: Daniel Fullmer Date: Sun, 27 Jun 2021 20:34:27 -0700 Subject: [PATCH] octoprint: add missing dependency to websocket-client The `six` dependency was removed from the websocket-client package when it was upgraded to 1.1.0 in 600d787b9b7bb7b82ff4515cfb01925e121ae6ca. Since we pin a different version for octoprint, we should re-add it here. --- pkgs/applications/misc/octoprint/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index 0c0dae0da42e..750043d4a9e3 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -44,6 +44,7 @@ let inherit version; sha256 = "63509b41d158ae5b7f67eb4ad20fecbb4eee99434e73e140354dc3ff8e09716f"; }; + propagatedBuildInputs = [ self.six ]; } ); }