[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51314] [PATCH 28/29] gnu: Add octoprint-filecheck.
From: |
Vinicius Monego |
Subject: |
[bug#51314] [PATCH 28/29] gnu: Add octoprint-filecheck. |
Date: |
Thu, 21 Oct 2021 04:01:59 +0000 |
* gnu/packages/printers.scm (octoprint-filecheck): New variable.
---
gnu/packages/printers.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm
index 934cb55f47..4056a66ad3 100644
--- a/gnu/packages/printers.scm
+++ b/gnu/packages/printers.scm
@@ -75,6 +75,26 @@ communication crippling bugs, and displays a warning box to
logged in users
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
+ (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.30.2
- [bug#51314] [PATCH 08/29] gnu: python-flask: Respect #:tests?., (continued)
- [bug#51314] [PATCH 08/29] gnu: python-flask: Respect #:tests?., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 18/29] gnu: python-netifaces: Update to 0.11.0., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 07/29] gnu: python-flask: Update to 1.1.4., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 11/29] gnu: Add python-zipstream-new., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 23/29] gnu: python-zeroconf: Update to 0.33.4., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 24/29] gnu: python-wrapt: Update to 1.12.1., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 26/29] gnu: Add octoprint-pisupport., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 25/29] gnu: python-wrapt: Enable tests., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 29/29] gnu: Add octoprint., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 27/29] gnu: Add octoprint-firmwarecheck., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 28/29] gnu: Add octoprint-filecheck.,
Vinicius Monego <=