diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2025-03-10 03:16:28 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:35 +0200 |
commit | 581945709f00355a62b3e33f3cd7a8681d877221 (patch) | |
tree | cf24baf1a0d7c151fb7cfdba81596842aec4400b | |
parent | b09cf29ad4d17624388253a67dc1f9d6642f1f56 (diff) | |
download | guix-581945709f00355a62b3e33f3cd7a8681d877221.tar.gz guix-581945709f00355a62b3e33f3cd7a8681d877221.zip |
gnu: python-louvain: Use pyproject-build-system.
* gnu/packages/graph.scm (python-louvain)
[build-system]: Switch from python-build-system to
pyproject-build-system.
[native-inputs]: Replace python-setuptools-57 by
python-setuptools. Add python-wheel.
Change-Id: I3c07564dd8fd3f75e33a2cc9737372e28c57f733
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/graph.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 467a7f661b..9cca8520ba 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -389,9 +389,9 @@ subplots, multiple-axes, polar charts, and bubble charts.") (patches (search-patches "python-louvain-fix-test.patch")) (sha256 (base32 "0sx53l555rwq0z7if8agirjgw4ddp8r9b949wwz8vlig03sjvfmp")))) - (build-system python-build-system) + (build-system pyproject-build-system) (native-inputs - (list python-setuptools-57)) ;for use_2to3 support + (list python-setuptools python-wheel)) (propagated-inputs (list python-networkx python-numpy)) (home-page "https://github.com/taynaud/python-louvain") |