diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-06-01 12:31:09 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-06-01 12:42:04 +0300 |
commit | 64c043e63a4be97f59fd1906c47973a74eedda67 (patch) | |
tree | 37b15dfb4830e4f874edca87b521b6e9cdc3c81b /gnu/packages/graph.scm | |
parent | b1f763de54dc2b8e240d0f01f7948ce76f67243e (diff) | |
parent | 75af73e1b7ac58770122d8831faa3a8158638bb0 (diff) | |
download | guix-64c043e63a4be97f59fd1906c47973a74eedda67.tar.gz |
Merge remote-tracking branch 'origin/master' into staging
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 6d1575a0bd..0b8e76f676 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -495,14 +495,14 @@ Faiss library."))) (define-public python-leidenalg (package (name "python-leidenalg") - (version "0.7.0") + (version "0.8.10") (source (origin (method url-fetch) (uri (pypi-uri "leidenalg" version)) (sha256 (base32 - "15fwld9hdw357rd026mzcwpah5liy4f33vc9x9kwy37g71b2rjf1")))) + "1hbvagp1yyazvl7cid7mii5263qi48lpkq543n5w71qysgz1f0v7")))) (build-system python-build-system) (arguments '(#:tests? #f ;tests are not included @@ -510,12 +510,14 @@ Faiss library."))) (add-after 'unpack 'fix-requirements (lambda _ (substitute* "setup.py" + (("self.external = False") + "self.external = True") + (("self.use_pkgconfig = False") + "self.use_pkgconfig = True") (("python-igraph >=") "igraph >="))))))) (native-inputs - ;; XXX: setuptools >= 58 as shipped with Python 3.9+ removes support - ;; for lib2to3, so use this older variant. - (list pkg-config python-setuptools)) + (list pkg-config python-setuptools-scm)) (inputs (list igraph)) (propagated-inputs |