guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4488ed60db1ddf28f60ad27f7fca60346bc588e0
Author: Vinicius Monego <[email protected]>
AuthorDate: Sat Jul 19 12:06:50 2025 -0300

    gnu: python-treelib: Update to 1.8.0.
    
    * gnu/packages/python-xyz.scm (python-treelib): Update to 1.8.0.
    [source]: Fetch from GitHub.
    [build-system]: Use pyproject-build-system.
    [native-inputs]: Add python-poetry-core, python-pytest.
    [propagated-inputs]: Remove python-six.
    
    Change-Id: I61fd3ba7da54ad97d547089f9f644673d129974c
---
 gnu/packages/python-xyz.scm | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 082faeba76..dc8136cd54 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14350,15 +14350,18 @@ without using the configuration machinery.")
 (define-public python-treelib
   (package
     (name "python-treelib")
-    (version "1.7.0")
-    (source (origin
-              (method url-fetch)
-              (uri (pypi-uri "treelib" version))
-              (sha256
-               (base32
-                "0qgv61g1p06kzf5fd2hcim5s49nzbv8k210frnk45rmr2vs1mzwv"))))
-    (build-system python-build-system)
-    (propagated-inputs (list python-six))
+    (version "1.8.0")
+    (source
+     (origin
+       (method git-fetch) ; no tests in PyPI
+       (uri (git-reference
+             (url "https://github.com/caesar0301/treelib";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0jd3rdaq8v7ykb626cm1gxa03higqnn2pmnv46fc0lc55xbrkxlf"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-poetry-core python-pytest))
     (home-page "https://github.com/caesar0301/treelib";)
     (synopsis "Implementation of a tree structure in Python")
     (description

Reply via email to