From 86526d707acef0d854d4f35dcd9b0b2b4dbbb8d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Sun, 9 Apr 2023 02:18:22 +0200 Subject: [PATCH] octoprint: test plugins with ofborg --- pkgs/applications/misc/octoprint/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/octoprint/default.nix b/pkgs/applications/misc/octoprint/default.nix index 40bf9884f705..e3c67137243b 100644 --- a/pkgs/applications/misc/octoprint/default.nix +++ b/pkgs/applications/misc/octoprint/default.nix @@ -243,9 +243,10 @@ let ]; passthru = { - python = self.python; + inherit (self) python; updateScript = nix-update-script { }; tests = { + plugins = (callPackage ./plugins.nix { }) super self; inherit (nixosTests) octoprint; }; };