sharlatan pushed a commit to branch python-team
in repository guix.
commit de0b69a843e3302f789484b39dc4cfb860be0cd7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 25 15:18:06 2025 +0000
gnu: python-objgraph: Adjust inputs.
* gnu/packages/python-xyz.scm (python-objgraph)
[propagated-inputs]: Remove graphviz; add python-graphviz.
[native-inputs]: Add graphviz.
Change-Id: I6ee63b68be75354ac649e3736dd1d55b60809e91
---
gnu/packages/python-xyz.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d7b13db44c..480ee2e9bd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22587,11 +22587,12 @@ are synchronized with data exchanges on
\"channels\".")
;; [], [], [], [], [], [], [], ...
"-k" "not test_at_addrs")))
(native-inputs
- (list python-pytest
+ (list graphviz
+ python-pytest
python-setuptools
python-wheel))
(propagated-inputs
- (list graphviz))
+ (list python-graphviz))
(home-page "https://mg.pov.lt/objgraph/")
(synopsis "Draw Python object reference graphs with graphviz")
(description