mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-09 20:59:31 -05:00
gnu: Add python-treelib.
* gnu/packages/python-xyz.scm (python-treelib): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
966a77b9e4
commit
5ef775d618
1 changed files with 18 additions and 0 deletions
|
@ -9453,6 +9453,24 @@ (define-public python-traitlets
|
||||||
without using the configuration machinery.")
|
without using the configuration machinery.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-treelib
|
||||||
|
(package
|
||||||
|
(name "python-treelib")
|
||||||
|
(version "1.6.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "treelib" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1247rv9fbb8pw3xbkbz04q3vnvvva3hcw002gp1clp5psargzgqw"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs (list python-future))
|
||||||
|
(home-page "https://github.com/caesar0301/treelib")
|
||||||
|
(synopsis "Implementation of a tree structure in Python")
|
||||||
|
(description
|
||||||
|
"This package provides a Python implementation of a tree structure.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-jupyter-core
|
(define-public python-jupyter-core
|
||||||
(package
|
(package
|
||||||
(name "python-jupyter-core")
|
(name "python-jupyter-core")
|
||||||
|
|
Loading…
Reference in a new issue