From ade7a0efa2843298cbad42feb13a1298ea93df9c Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Fri, 9 Dec 2022 18:27:18 +0100 Subject: [PATCH 15/19] gnu: Add octoprint-filecheck. * gnu/packages/printers.scm (octoprint-filecheck): New variable. diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm index 1010b73356..2bbe45e066 100644 --- a/gnu/packages/printers.scm +++ b/gnu/packages/printers.scm @@ -83,6 +83,29 @@ (define-public octoprint-firmwarecheck on identification of such a firmware.") (license license:agpl3))) +(define-public octoprint-filecheck + (package + (name "octoprint-filecheck") + (version "2021.2.23") + (source + (origin + (method url-fetch) + (uri (pypi-uri "OctoPrint-FileCheck" version)) + (sha256 + (base32 "0bgvv6hvxa9qv0fs5dfr9wlbbjawxik8f2cid3h3czdhdhw46aqv")))) + (build-system python-build-system) + (arguments + `(#:tests? #f ; no tests + #:phases + (modify-phases %standard-phases + (delete 'sanity-check)))) ; checks for Octoprint + (home-page "https://github.com/OctoPrint/OctoPrint-FileCheck") + (synopsis "Plugin to check for common issues in uploaded files") + (description "The File Check plugin tries to detect common issues in +uploaded files that are known to cause issues while printing and which in +the past have caused support requests on OctoPrint's Community Forums.") + (license license:agpl3))) + (define-public robocut (package (name "robocut") -- 2.38.1