summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-python-igraph/package.py
blob: 6c16df7afa28801c7971e7114e5b14204a751971 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2021 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 import *


class PyPythonIgraph(PythonPackage):
    """igraph is a collection of network analysis tools with the emphasis on
       efficiency, portability and ease of use."""

    homepage = "https://igraph.org/"
    url      = "http://igraph.org/nightly/get/python/python-igraph-0.7.0.tar.gz"

    version('0.7.0', sha256='64ac270e80a92066d489407be1900a329df8e26844430f941ecc88771188c471')

    depends_on('py-setuptools', type='build')
    depends_on('igraph')