summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-15 10:12:33 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:53 +0100
commitf7f6e2955b5ff5e69389e3662ea1e767df7befc4 (patch)
treeb45ff1b44efec632d1be70b2c2eed1b436048626 /gnu/packages/python-xyz.scm
parent032e2e49bb03db629ba4a676ea925d873de4f6c8 (diff)
gnu: python-anytree: Update to 2.13.0.
* gnu/packages/python-xyz.scm (python-anytree): Update to 2.13.0. [propagated-inputs]: Remove python-six. [native-inputs]: Remove python-poetry-core; add python-pdm-backend, python-pytest-cov, python-pyyaml and python-test2ref. Change-Id: I013875d693c0bc910544d0edbae0764103165b50
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm13
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1c681980d4..585912f882 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8310,7 +8310,7 @@ alternative representations which do not require this package.")
(define-public python-anytree
(package
(name "python-anytree")
- (version "2.12.0")
+ (version "2.13.0")
(source
(origin
(method git-fetch) ; no tests data in PyPi package
@@ -8319,7 +8319,7 @@ alternative representations which do not require this package.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0fagd6h6nixvzf3ps8pbfkxvp9xnpq8hpmzaaq1zab4dzqnpsrgj"))))
+ (base32 "0xp13r0jrz1kdmi9h10bmgqzc7wjil3ghf6gqsi9m0lsqlj5hlwh"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -8331,10 +8331,11 @@ alternative representations which do not require this package.")
(mkdir-p "tests/dotexport/"))))))
(native-inputs
(list graphviz ;for 'dot'
- python-poetry-core
- python-pytest))
- (propagated-inputs
- (list python-six))
+ python-pdm-backend
+ python-pytest
+ python-pytest-cov
+ python-pyyaml
+ python-test2ref))
(home-page "https://github.com/c0fec0de/anytree")
(synopsis "Lightweight tree data library")
(description