diff options
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 02033c25b3..46e556ecc0 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -250,8 +250,12 @@ more.") var (format #f "[~s]~%" (string-append igraph "/lib"))))))))))) (inputs (list igraph)) - (propagated-inputs (list python-texttable)) - (native-inputs (list python-pytest)) + (propagated-inputs + (list python-texttable)) + (native-inputs + (list python-pytest + python-setuptools + python-wheel)) (home-page "https://igraph.org/python/") (synopsis "Python bindings for the igraph network analysis library")))) @@ -419,11 +423,12 @@ algorithm for community detection in large networks.") (("self.use_pkgconfig = False") "self.use_pkgconfig = True"))))))) (inputs (list igraph)) - (propagated-inputs (list python-igraph)) + (propagated-inputs (list python-igraph python-setuptools)) (native-inputs (list pkg-config python-ddt - python-setuptools-scm)) + python-setuptools-scm + python-wheel)) (home-page "https://github.com/vtraag/louvain") (synopsis "Community detection in large networks") (description |