2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 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)
|
|
|
|
|
2015-01-21 01:39:21 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyDateutil(PythonPackage):
|
2015-01-21 01:39:21 +08:00
|
|
|
"""Extensions to the standard Python datetime module."""
|
|
|
|
homepage = "https://pypi.python.org/pypi/dateutil"
|
2017-08-07 00:45:00 +08:00
|
|
|
url = "https://pypi.io/packages/source/p/python-dateutil/python-dateutil-2.4.0.tar.gz"
|
2015-01-21 01:39:21 +08:00
|
|
|
|
2019-03-27 03:42:31 +08:00
|
|
|
version('2.7.5', sha256='88f9287c0174266bb0d8cedd395cfba9c58e87e5ad86b2ce58859bc11be3cf02')
|
2016-03-31 00:16:11 +08:00
|
|
|
version('2.5.2', 'eafe168e8f404bf384514f5116eedbb6')
|
2019-03-27 03:42:31 +08:00
|
|
|
version('2.4.2', '4ef68e1c485b09e9f034e10473e5add2')
|
|
|
|
version('2.4.0', '75714163bb96bedd07685cdb2071b8bc')
|
|
|
|
version('2.2', 'c1f654d0ff7e33999380a8ba9783fd5c')
|
2015-01-21 01:39:21 +08:00
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on('py-setuptools', type='build')
|
2019-04-26 19:28:35 +08:00
|
|
|
depends_on('py-setuptools-scm', type='build', when='@2.7.5:')
|
2017-01-08 11:59:02 +08:00
|
|
|
depends_on('py-six', type=('build', 'run'))
|