mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
afd2dabbe5
commit
4488ed60db
1 changed files with 12 additions and 9 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue