gnu: Add python-anytree.

* gnu/packages/python-xyz.scm (python-anytree): New public variable.
This commit is contained in:
Marius Bakke 2020-01-19 20:23:18 +01:00
parent 20bf58bff4
commit 544ea9c2df
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -2584,6 +2584,30 @@ (define-public python-daemon
;; Only setup.py is gpl3+, everything else is apache 2.0 licensed.
(license (list license:asl2.0 license:gpl3+))))
(define-public python-anytree
(package
(name "python-anytree")
(version "2.8.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "anytree" version))
(sha256
(base32
"1aycpc387wqz7h9w2p53qxn43qsh3m6by6ak4kkc66x9aprr63rz"))))
(build-system python-build-system)
(propagated-inputs
`(("python-six" ,python-six)))
(native-inputs
`(;; For tests.
("graphviz" ,graphviz) ;for 'dot'
("python-nose" ,python-nose)))
(home-page "https://github.com/c0fec0de/anytree")
(synopsis "Lightweight tree data library")
(description
"@code{anytree} is a simple, lightweight, and extensible tree data
structure for Python.")
(license license:asl2.0)))
(define-public python-docutils
(package
(name "python-docutils")