summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-toposort/package.py
blob: 87ff31df7e46f54c8ee88594dd543b339b464db4 (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 PyToposort(PythonPackage):
    """Implements a topological sort algorithm."""

    pypi = 'toposort/toposort-1.6.tar.gz'

    maintainers = ['marcusboden']

    version('1.6', 'a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac')

    depends_on('python@2.7:2.8,3.3:', type=('build', 'run'))
    depends_on('py-setuptools', type='build')