summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-convertdate/package.py
blob: 9a3cba5afe95e41afd675201dbd5b7ae73320486 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2019 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 PyConvertdate(PythonPackage):
    """Converts between Gregorian dates and other calendar
    systems.Calendars included: Baha'i, French Republican, Hebrew,
    Indian Civil, Islamic, ISO, Julian, Mayan and Persian."""

    homepage = "https://github.com/fitnr/convertdate/"
    url      = "https://pypi.io/packages/source/c/convertdate/convertdate-2.2.0.tar.gz"

    version('2.2.0', sha256='9d2b0cd8d5382d2458d4cfa59665abba398a9e9bfd3a01c6f61b7b47768d28bf')

    depends_on('py-setuptools', type='build')
    depends_on('py-pytz@2014.10:2019.13', type=('build', 'run'))
    depends_on('py-pymeeus@0.3.6:1', type=('build', 'run'))