summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-07-19 12:06:50 -0300
committerVinicius Monego <monego@posteo.net>2025-07-23 15:30:15 -0300
commit4488ed60db1ddf28f60ad27f7fca60346bc588e0 (patch)
tree2a8bba01261dfe456742acf3bb9dbcd1c1c9e1f9 /gnu/packages/python-xyz.scm
parentafd2dabbe5ac8967d7ad8b0398ac0f8bb6dd091c (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm21
1 files 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