summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-louvain/package.py
blob: 602fb7fd6dca65b97aa81f31ea2c029085a09b6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


from spack.package import *


class PyPythonLouvain(PythonPackage):
    """This module implements community detection.
    It uses the louvain method described in Fast unfolding of communities
    in large networks, Vincent D Blondel, Jean-Loup Guillaume, Renaud
    Lambiotte, Renaud Lefebvre, Journal of Statistical Mechanics: Theory
    and Experiment 2008(10), P10008 (12pp)"""

    homepage = "https://github.com/taynaud/python-louvain"
    pypi = "python-louvain/python-louvain-0.14.tar.gz"

    version("0.15", sha256="2a856edfbe29952a60a5538a84bb78cca18f6884a88b9325e85a11c8dd4917eb")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-networkx", type=("build", "run"))