feat(octoprint): octorant

This commit is contained in:
arcnmx 2024-07-13 18:13:48 -07:00
parent 2c9219ba87
commit 8b5b40ac0a
3 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,24 @@
{ buildPlugin
, python3Packages
, fetchFromGitHub
}: let
version = "1.3.4";
in buildPlugin {
pname = "OctoPrint-Octorant";
inherit version;
src = fetchFromGitHub {
owner = "bchanudet";
repo = "OctoPrint-Octorant";
rev = version;
sha256 = "sha256-gP79zlJ8gdtpddXOJIMhouSbwXnrSf+c1bURkN/7jvw=";
};
propagatedBuildInputs = with python3Packages; [
pillow
];
meta = {
homepage = "https://github.com/bchanudet/OctoPrint-Octorant";
};
}