[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#51314] [PATCH 26/29] gnu: Add octoprint-pisupport.
From: |
Vinicius Monego |
Subject: |
[bug#51314] [PATCH 26/29] gnu: Add octoprint-pisupport. |
Date: |
Thu, 21 Oct 2021 04:01:57 +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..ac79d57aba 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.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "OctoPrint-PiSupport" version))
+ (sha256
+ (base32 "0y4adzqy6bqp6r88gvpkvmhwgqv09zs2ngckp98ipa1yfljx0shv"))))
+ (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 22/29] gnu: python-colorlog: Update to 5.0.1., (continued)
- [bug#51314] [PATCH 22/29] gnu: python-colorlog: Update to 5.0.1., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 21/29] gnu: python-watchdog: Update to 0.10.7., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 15/29] gnu: Add python-sgmllib3k., Vinicius Monego, 2021/10/21
- [bug#51314] [PATCH 16/29] gnu: python-feedparser: Update to 6.0.8., Vinicius Monego, 2021/10/21
- [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 <=
- [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, 2021/10/21