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
This commit is contained in:
Vinicius Monego 2025-07-19 12:06:50 -03:00
parent afd2dabbe5
commit 4488ed60db
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -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