guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 83d5d289b993b6b9d21f89f303915504b987ef6c
Author: Aaron Covrig <[email protected]>
AuthorDate: Tue Dec 23 08:54:11 2025 -0500

    gnu: python-pubmed-parser: Update to 0.5.1.
    
    * gnu/packages/python-xyz.scm (python-pubmed-parser): Update to 0.5.1.
    [arguments]: Disable tests.
    [native-inputs]: Remove python-pytest, python-pytest-cov, and python-wheel.
    [home-page]: Update URL.
    
    Change-Id: Icb0bf10b2e757ec5f36b102dcdbb3bf524e8db0e
    Modified-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5f523fe08e..cfd864f998 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14797,7 +14797,7 @@ callback signature using a prototype function.")
 (define-public python-pubmed-parser
   (package
     (name "python-pubmed-parser")
-    (version "0.3.1")
+    (version "0.5.1")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -14806,20 +14806,18 @@ callback signature using a prototype function.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "195cmjjg7xdwjj5455h78q7jnxnccia07a19xwndhlkxv7vk9v60"))))
+                "0hm520pxmbqlfckkdyccagmmsrqwdi0qdsc0l7rgp62jmsv7ppi5"))))
     (build-system pyproject-build-system)
+    (arguments (list #:tests? #f)) ;; Tests require internet
+    (native-inputs
+     (list python-setuptools))
     (propagated-inputs
      (list python-lxml
            python-numpy
            python-requests
-           python-six
+           python-six           ;hard dependency
            python-unidecode))
-    (native-inputs
-     (list python-pytest
-           python-pytest-cov
-           python-setuptools
-           python-wheel))
-    (home-page "https://github.com/titipata/pubmed_parser";)
+    (home-page "https://titipata.github.io/pubmed_parser/";)
     (synopsis "Parser for Pubmed Open-Access Subset and MEDLINE XML 
repository")
     (description
      "This package provides a Python parser for Pubmed Open-Access Subset and

Reply via email to