
- [x] Replace `version(ver, checksum=None, **kwargs)` signature with `version(ver, checksum=None, *, sha256=..., ...)` explicitly listing all arguments. - [x] Fix various issues in packages: - `tags` instead of `tag` - `default` instead of `preferred` - `sha26` instead of `sha256` - etc Also, use `sha256=...` consistently. Note: setting `sha256` currently doesn't validate the checksum length, so you could do `sha256="a"*32` and it would get checked as `md5`... but that's something for another PR.
26 lines
878 B
Python
26 lines
878 B
Python
# 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 PyXtb(PythonPackage):
|
|
"""Python API for the extended tight binding program package"""
|
|
|
|
homepage = "https://xtb-python.readthedocs.org"
|
|
pypi = "xtb/xtb-22.1.tar.gz"
|
|
git = "https://github.com/grimme-lab/xtb-python.git"
|
|
|
|
maintainers("awvwgk")
|
|
|
|
version("22.1", sha256="7a59e7b783fc6e8b7328f55211de681e535a83991b07c4bab73494063f5e9018")
|
|
|
|
depends_on("pkgconfig", type="build")
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("py-cffi", type=("build", "run"))
|
|
depends_on("py-meson-python", type="build")
|
|
depends_on("py-numpy", type=("build", "run"))
|
|
depends_on("xtb", type=("build", "run"))
|