[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51314] [PATCH v2 21/24] gnu: Add octoprint-pisupport.
From: |
Vinicius Monego |
Subject: |
[bug#51314] [PATCH v2 21/24] gnu: Add octoprint-pisupport. |
Date: |
Sat, 13 Nov 2021 20:02:27 +0000 |
* gnu/packages/printers.scm (octoprint-pisupport): New variable.
---
gnu/packages/printers.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/printers.scm b/gnu/packages/printers.scm
index f78923966c..7367ce3a81 100644
--- a/gnu/packages/printers.scm
+++ b/gnu/packages/printers.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -19,8 +20,10 @@
(define-module (gnu packages printers)
#:use-module (guix packages)
+ #:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system python)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages libusb)
#:use-module (gnu packages pkg-config)
@@ -29,6 +32,27 @@
;; This is a module for packages related to printer-like devices, but not
;; related to CUPS.
+(define-public octoprint-pisupport
+ (package
+ (name "octoprint-pisupport")
+ (version "2021.10.28")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "OctoPrint-PiSupport" version))
+ (sha256
+ (base32 "05g79hb0x8bpk4qk9h6dibl0pnlsvbnmn8jx64z4dx8hdfad3rwf"))))
+ (build-system python-build-system)
+ (arguments
+ ;; No tests in PyPI release, and circular dependency on Octoprint.
+ `(#:tests? #f))
+ (home-page "https://github.com/OctoPrint/OctoPrint-PiSupport")
+ (synopsis "Plugin to provide additional information about your Pi")
+ (description "The Pi Support plugin provides additional information about
+your Pi in the UI and also alerts you about undervoltage or overheating issues
+observed on your Pi or if your Pi is unsupported.")
+ (license license:agpl3)))
+
(define-public robocut
(package
(name "robocut")
--
2.30.2
- [bug#51314] [PATCH v2 11/24] gnu: python-feedparser: Update to 6.0.8., (continued)
- [bug#51314] [PATCH v2 11/24] gnu: python-feedparser: Update to 6.0.8., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 09/24] gnu: Add python-sentry-sdk., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 15/24] gnu: python-pkginfo: Update to 1.7.1., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 14/24] gnu: python-websocket-client: Update to 0.59.0., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 13/24] gnu: python-netifaces: Update to 0.11.0., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 16/24] gnu: python-watchdog: Update to 2.1.6., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 17/24] gnu: python-colorlog: Update to 6.6.0., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 19/24] gnu: python-wrapt: Update to 1.13.3., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 18/24] gnu: python-zeroconf: Update to 0.36.13., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 24/24] gnu: Add octoprint., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 21/24] gnu: Add octoprint-pisupport.,
Vinicius Monego <=
- [bug#51314] [PATCH v2 20/24] gnu: python-wrapt: Enable tests., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 23/24] gnu: Add octoprint-filecheck., Vinicius Monego, 2021/11/13
- [bug#51314] [PATCH v2 22/24] gnu: Add octoprint-firmwarecheck., Vinicius Monego, 2021/11/13