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


class PyCclib(PythonPackage):
    """Open source library for parsing and interpreting the results of
    computational chemistry packages"""

    homepage = "https://cclib.github.io/"

    version(
        "1.5.post1",
        sha256="c2bf043432ab8df461d61b4289d0eb869fe134eee545ea5a78f8dea14b392f47",
        url="https://github.com/cclib/cclib/releases/download/v1.5/cclib-1.5.post1.tar.gz",
    )

    # pip silently replaces distutils with setuptools
    depends_on("py-setuptools", type="build")
    depends_on("py-numpy@1.5:", type=("build", "run"))