summaryrefslogtreecommitdiff
path: root/gnu/packages/graph.scm
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2023-05-11 08:33:02 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-10-11 21:12:03 +0100
commita190a004c04f373e099f3e55748173546daecd99 (patch)
tree5f023cf99d8491d1adb2d4c3a810a1aeaebbd261 /gnu/packages/graph.scm
parentb8fd792ea267cb920da0651074a533d8abf00488 (diff)
build-system/pyproject: Use python-sans-pip-wrapper as default-python.
Also adds python-setuptools and python-wheel to relevant packages, either to native-inputs or to propagated inputs if the pkg_resources Python module is loaded at runtime. * guix/build-system/pyproject.scm (default-python): Default to python-sans-pip-wrapper. Change-Id: I2d986c2225114f54459dd6bb360913106e52cdf4
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r--gnu/packages/graph.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index 02033c25b3..daf77187d5 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -251,7 +251,7 @@ more.")
(string-append igraph "/lib")))))))))))
(inputs (list igraph))
(propagated-inputs (list python-texttable))
- (native-inputs (list python-pytest))
+ (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 +419,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