2019-12-31 14:36:56 +08:00
|
|
|
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
from spack import *
|
2016-05-10 19:17:36 +08:00
|
|
|
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyLogilabCommon(PythonPackage):
|
2016-05-10 17:48:18 +08:00
|
|
|
"""Common modules used by Logilab projects"""
|
|
|
|
homepage = "https://www.logilab.org/project/logilab-common"
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/l/logilab-common/logilab-common-1.2.0.tar.gz"
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2020-02-19 01:49:46 +08:00
|
|
|
version('1.4.2', sha256='cdda9ed0deca7c68f87f7a404ad742e47aaa1ca5956d12988236a5ec3bda13a0')
|
2019-10-11 13:44:41 +08:00
|
|
|
version('1.2.0', sha256='d4e5cec3be3a89f06ff05e359a221e69bd1da33cb7096cad648ddcccea8465b7')
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2017-01-07 00:50:06 +08:00
|
|
|
extends('python', ignore=r'bin/pytest')
|
2020-02-19 01:49:46 +08:00
|
|
|
depends_on("py-setuptools", type=('build', 'run'))
|
|
|
|
depends_on("py-six@1.4.0:", type=('build', 'run'))
|
|
|
|
depends_on("py-unittest2@0.5.1:", type=('build', 'run'), when='^python@:2.7')
|
|
|
|
depends_on("py-pytz", type='test')
|