2024-01-02 16:21:30 +08:00
|
|
|
# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
|
2023-04-13 00:52:10 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
|
|
|
from spack.package import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyTroveClassifiers(PythonPackage):
|
|
|
|
"""The trove-classifiers pacakge is the canonical source for classifiers
|
|
|
|
on PyPI. Classifiers categorize projects per PEP 301."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/pypa/trove-classifiers"
|
|
|
|
pypi = "trove-classifiers/trove-classifiers-2023.3.9.tar.gz"
|
|
|
|
|
2023-12-23 03:29:11 +08:00
|
|
|
license("Apache-2.0")
|
|
|
|
|
2023-09-18 23:50:55 +08:00
|
|
|
version("2023.8.7", sha256="c9f2a0a85d545e5362e967e4f069f56fddfd91215e22ffa48c66fb283521319a")
|
2023-04-13 00:52:10 +08:00
|
|
|
version("2023.3.9", sha256="ee42f2f8c1d4bcfe35f746e472f07633570d485fab45407effc0379270a3bb03")
|
|
|
|
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
|
|
depends_on("py-calver", type="build")
|