guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 522b8ec97e94514efcfcd54b479c46e5c68f9770
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Nov 22 11:43:19 2025 +0100

    gnu: python-reedsolo: Update to 1.7.0.
    
    * gnu/packages/python-xyz.scm (python-reedsolo): Update to 1.7.0.
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-pytest, python-setuptools.
    [description]: Improve style.
    
    Change-Id: I176ee91e0ad31615336fbc9e8982adc3936c4495
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index c5a3c56ccc..4598ca7b79 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34297,20 +34297,24 @@ notebooksharing.space instance.")
 (define-public python-reedsolo
   (package
     (name "python-reedsolo")
-    (version "1.5.4")
+    (version "1.7.0")
     (source
-      (origin
-        (method url-fetch)
-        (uri (pypi-uri "reedsolo" version))
-        (sha256
-          (base32 "09q15ji9iac3nmmxrcdvz8ynldvvqanqy3hs6q3cp327hgf5rcmq"))))
-    (build-system python-build-system)
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tomerfiliba/reedsolomon";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "078f02cal1nn53v10spx141hd5hi22a3xxrz1j32f7cph7b46dwz"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-setuptools))
     (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.")
+    (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)))
 
 (define-public python-esprima

Reply via email to