guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit 9e8027f94bc7b8b1eb863da114b57dafe6535ca4
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Dec 29 11:12:08 2025 +0100

    gnu: python-biothings-client: Update to 0.4.1.
    
    * gnu/packages/bioinformatics.scm (python-biothings-client): Update to 
0.4.1.
    [source]: Switch to git-fetch.
    [build-system]: Switch to pyproject-build-system.
    [native-inputs]: Add python-setuptools.
    [propagated-inputs]: Add python-httpx.
    
    Change-Id: I3d5c9ea79fd23a8291074f32d37adfede4e0e238
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/bioinformatics.scm | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9fbbd43a25..dd8e35719c 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17353,16 +17353,20 @@ single-cell RNA-seq data.")
 (define-public python-biothings-client
   (package
     (name "python-biothings-client")
-    (version "0.2.6")
+    (version "0.4.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (pypi-uri "biothings_client" version))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/biothings/biothings_client.py";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
        (sha256
-        (base32 "0bccs37d5saxn5xsd2rfpkrnc5a120xs3ibizai66fgvp1vxbnc4"))))
-    (build-system python-build-system)
-    (arguments `(#:tests? #false)) ; require internet access
-    (propagated-inputs (list python-requests))
+        (base32 "1yhrbripg4wr4hg1c9yfv8m1zns37w90fysbbrwm2wlvhmb4i2xq"))))
+    (build-system pyproject-build-system)
+    (arguments (list #:tests? #f)) ;require internet access
+    (native-inputs (list python-pytest python-setuptools))
+    (propagated-inputs (list python-httpx python-requests))
     (home-page "https://github.com/biothings/biothings_client.py";)
     (synopsis "Python client for BioThings API services")
     (description "This package provides a Python client for BioThings

Reply via email to