summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-seekpath/package.py
blob: d4bfcf573bbc4123a52c69ec6a7ae47ef759dbea (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
24
25
# 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 PySeekpath(PythonPackage):
    """SeeK-path is a python module to obtain band paths in the Brillouin zone of crystal
    structures."""

    homepage = "http://github.com/giovannipizzi/seekpath"
    pypi = "seekpath/seekpath-2.0.1.tar.gz"

    maintainers("meyersbs")

    license("MIT")

    version("2.0.1", sha256="188513ee187fbbace49066a29ecea9bbd351f23da3bea33d507d0f590856b082")

    depends_on("py-setuptools", type="build")
    depends_on("python@3.5:", type=("build", "run"))
    depends_on("py-numpy@1.0:", type=("build", "run"))
    depends_on("py-spglib@1.14.1:", type=("build", "run"))