[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: Add python-simple-pid.
From: |
guix-commits |
Subject: |
07/09: gnu: Add python-simple-pid. |
Date: |
Tue, 18 Oct 2022 08:56:27 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 70cac2829fe180099c3ea7637053ff8bf1cc1760
Author: jgart <jgart@dismail.de>
AuthorDate: Fri Oct 7 16:59:11 2022 -0500
gnu: Add python-simple-pid.
* gnu/packages/python-science.scm (python-simple-pid): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python-science.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 8e38e69d97..94a4c922a5 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -20,6 +20,7 @@
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;; Copyright © 2022 Wiktor Żelazny <wzelazny@vurv.cz>
;;; Copyright © 2022 Eric Bavier <bavier@posteo.net>
+;;; Copyright © 2022 jgart <jgart@dismail.de>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1482,6 +1483,30 @@ of use as pickling or @code{numpy.save}, but with the
language
interoperability offered by HDF5.")
(license license:bsd-3)))
+(define-public python-simple-pid
+ (package
+ (name "python-simple-pid")
+ (version "1.0.1")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "simple-pid" version))
+ (sha256
+ (base32
+ "094mz6rmfq1h0gpns5vlxb7xf9297hlkhndw7g9k95ziqfkv7mk0"))))
+ (build-system python-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "python" "-m" "unittest" "discover" "tests/")))))))
+ (home-page "https://github.com/m-lundberg/simple-pid")
+ (synopsis "Easy to use PID controller")
+ (description "This package provides a simple and easy-to-use @acronym{PID,
+proportional-integral-derivative} controller.")
+ (license license:expat)))
+
(define-public python-opt-einsum
(package
(name "python-opt-einsum")
- branch master updated (0289312bc9 -> 72a41c4012), guix-commits, 2022/10/18
- 03/09: gnu: guix: Switch to Guile-GnuTLS., guix-commits, 2022/10/18
- 01/09: gnu: guile-gnutls: Fix cross-crompilation., guix-commits, 2022/10/18
- 05/09: gnu: hpcguix-web: Remove input labels., guix-commits, 2022/10/18
- 07/09: gnu: Add python-simple-pid.,
guix-commits <=
- 02/09: gnu: gnutls-latest: Remove dependency on Guile., guix-commits, 2022/10/18
- 08/09: gnu: wolfssl: Update to 5.5.1 [security fixes]., guix-commits, 2022/10/18
- 04/09: self: Switch to Guile-GnuTLS., guix-commits, 2022/10/18
- 06/09: doc: Mention Guile-GnuTLS in the requirements., guix-commits, 2022/10/18
- 09/09: gnu: Add nbfc-linux., guix-commits, 2022/10/18