mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 18:29:28 +01:00
gnu: Add python-reedsolo.
Missing dependency of python-esptool. * gnu/packages/python-xyz.scm (python-reedsolo): New variable.
This commit is contained in:
parent
9350538558
commit
80db7ab65b
1 changed files with 20 additions and 0 deletions
|
@ -28593,3 +28593,23 @@ to:
|
||||||
it supports reStructuredText, Markdown, IPython (Jupyter) Notebooks and HTML,
|
it supports reStructuredText, Markdown, IPython (Jupyter) Notebooks and HTML,
|
||||||
and has plugins for many other formats.")
|
and has plugins for many other formats.")
|
||||||
(license license:expat)))
|
(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)))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue