guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/04: gnu: Add python-reedsolo.


From: guix-commits
Subject: 01/04: gnu: Add python-reedsolo.
Date: Tue, 18 Jan 2022 08:20:31 -0500 (EST)

lbraun pushed a commit to branch master
in repository guix.

commit 80db7ab65bbcb2465e7aebbb9bece4af2293fe78
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Tue Jan 18 13:56:17 2022 +0100

    gnu: Add python-reedsolo.
    
    Missing dependency of python-esptool.
    
    * gnu/packages/python-xyz.scm (python-reedsolo): New variable.
---
 gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e4cb94fe1b..edb2937c5f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28593,3 +28593,23 @@ to:
 it supports reStructuredText, Markdown, IPython (Jupyter) Notebooks and HTML,
 and has plugins for many other formats.")
     (license license:expat)))
+
+(define-public python-reedsolo
+  (package
+    (name "python-reedsolo")
+    (version "1.5.4")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (pypi-uri "reedsolo" version))
+        (sha256
+          (base32 "09q15ji9iac3nmmxrcdvz8ynldvvqanqy3hs6q3cp327hgf5rcmq"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/tomerfiliba/reedsolomon";)
+    (synopsis "Pure-Python Reed Solomon encoder/decoder")
+    (description "A pure-python universal errors-and-erasures Reed-Solomon
+Codec, based on the tutorial at Wikiversity.  This is a burst-type
+implementation, so that it supports any Galois field higher than 2^3,
+but not binary streams.")
+    (license license:public-domain)))
+



reply via email to

[Prev in Thread] Current Thread [Next in Thread]