mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 15:10:16 -05:00
gnu: Add python-louvain 0.15.
* gnu/packages/graph.scm (python-louvain): Rename variable to python-louvain-0.6. (python-louvain): New variable. * gnu/packages/bioinformatics.scm (python-scanpy)[propagated-inputs]: Use python-louvain-0.6. Co-authored-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
0b5ab41f29
commit
76fb1a5cf2
2 changed files with 23 additions and 1 deletions
|
@ -12586,7 +12586,7 @@ (define-public python-scanpy
|
||||||
("python-igraph" ,python-igraph)
|
("python-igraph" ,python-igraph)
|
||||||
("python-joblib" ,python-joblib)
|
("python-joblib" ,python-joblib)
|
||||||
("python-legacy-api-wrap" ,python-legacy-api-wrap)
|
("python-legacy-api-wrap" ,python-legacy-api-wrap)
|
||||||
("python-louvain" ,python-louvain)
|
("python-louvain" ,python-louvain-0.6)
|
||||||
("python-matplotlib" ,python-matplotlib)
|
("python-matplotlib" ,python-matplotlib)
|
||||||
("python-natsort" ,python-natsort)
|
("python-natsort" ,python-natsort)
|
||||||
("python-networkx" ,python-networkx)
|
("python-networkx" ,python-networkx)
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2019 Andreas Enge <andreas@enge.fr>
|
||||||
;;; Copyright © 2020 Alexander Krotov <krotov@iitp.ru>
|
;;; Copyright © 2020 Alexander Krotov <krotov@iitp.ru>
|
||||||
;;; Copyright © 2020 Pierre Langlois <pierre.langlos@gmx.com>
|
;;; Copyright © 2020 Pierre Langlois <pierre.langlos@gmx.com>
|
||||||
|
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -229,6 +230,27 @@ (define-public python2-plotly
|
||||||
(package-with-python2 python-plotly-2.4.1))
|
(package-with-python2 python-plotly-2.4.1))
|
||||||
|
|
||||||
(define-public python-louvain
|
(define-public python-louvain
|
||||||
|
(package
|
||||||
|
(name "python-louvain")
|
||||||
|
(version "0.15")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "python-louvain" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1sqp97fwh4asx0jr72x8hil8z8fcg2xq92jklmh2m599pvgnx19a"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-networkx" ,python-networkx)
|
||||||
|
("python-numpy" ,python-numpy)))
|
||||||
|
(home-page "https://github.com/taynaud/python-louvain")
|
||||||
|
(synopsis "Louvain algorithm for community detection")
|
||||||
|
(description
|
||||||
|
"This package provides a pure Python implementation of the Louvain
|
||||||
|
algorithm for community detection in large networks.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-louvain-0.6
|
||||||
(package
|
(package
|
||||||
(name "python-louvain")
|
(name "python-louvain")
|
||||||
(version "0.6.1")
|
(version "0.6.1")
|
||||||
|
|
Loading…
Reference in a new issue