guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 13445f43d78a6a941c969c4aadd1ba968715b5ff
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Sep 20 14:06:07 2025 +0100

    gnu: python-readability-lxml: Update to 0.8.4.1.
    
    * gnu/packages/python-xyz.scm (python-readability-lxml): Update to 0.8.4.1.
    [source] <snippet>: Remove as no longer required.
    <commit>: Version format has been changed.
    [native-inputs]: Remove python-timeout-decorator, python-setuptools, and
    python-wheel; add python-poetry-core.
    
    Change-Id: I7b29efede45bd8dfdd41ee0145ba30cba452f0ec
---
 gnu/packages/python-xyz.scm | 40 ++++++++++++++++++++--------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6b76b4f39a..7e7789c628 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -35476,29 +35476,29 @@ number of words, syllables, and sentences.")
     (license license:asl2.0)))
 
 (define-public python-readability-lxml
+  ;; No releases since 2020, see:
+  ;; <https://github.com/buriy/python-readability/issues/196>.
   (package
     (name "python-readability-lxml")
-    (version "0.8.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/buriy/python-readability";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "13nfy2v0pbbf62jn9qwgi489gg97hbb22q6w3f78mnvjxd2m19rh"))
-              (snippet
-               #~(begin (delete-file "readability/compat/two.py")))))
+    (version "0.8.4.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "http://github.com/buriy/python-readability";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1dr567k03ljhwx9pacmynrv47w5vgq9fkgncpm0vlvmby2g0xgdl"))))
     (build-system pyproject-build-system)
-    (propagated-inputs (list python-chardet
-                             python-cssselect
-                             python-lxml
-                             python-lxml-html-clean))
-    (native-inputs (list python-timeout-decorator
-                         python-setuptools
-                         python-pytest
-                         python-wheel))
+    (native-inputs
+     (list python-poetry-core
+           python-pytest))
+    (propagated-inputs
+     (list python-chardet
+           python-cssselect
+           python-lxml
+           python-lxml-html-clean))    ;XXX: it sould be part of python-lxml 
lib
     (home-page "http://github.com/buriy/python-readability";)
     (synopsis "HTML to text parser")
     (description

Reply via email to