feat(octoprint): motion and notifs

This commit is contained in:
arcnmx 2024-07-14 18:44:05 -07:00
parent 6bf729ffe9
commit 7fe6d48ff0
11 changed files with 263 additions and 47 deletions

View file

@ -0,0 +1,23 @@
{ buildPlugin
, python3Packages
, fetchFromGitHub
}: let
version = "2.0.0";
pname = "OctoPrint-Queue";
in buildPlugin {
inherit pname version;
src = fetchFromGitHub {
owner = "chennes";
repo = pname;
rev = "v${version}";
sha256 = "sha256-uAG6GrUKXUdUTtzmjKWPiHxMa3ekvoLpSIvFMiJI+/8=";
};
propagatedBuildInputs = with python3Packages; [
];
meta = {
homepage = "https://github.com/chennes/OctoPrint-Queue";
};
}