
* Adds package 'enum-tools' * Fixes syntax * py-enum-tools: update pypi link and dependencies * py-whey: add new package * py-consolekit: add new package * py-shippinglabel: add new package * py-project-parser: add new package * py-handy-archives: add new package * py-domdf-python-tools: add new package * py-dom-toml: add new package * py-dist-meta: add new package * py-deprecation-alias: add new package * py-pygments: add versions 2.16.0 and 2.16.1 * py-mistletoe: add new package * py-apeye: add new package * py-apeye-core: add new package * Fix dependencies' names and remove redundancies * Fix style * py-enum-tools: fix dependencies * py-mistletoe: update dependencies * Apply suggestions from code review Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * py-whey: fix dependencies * py-whey: fix style * py-apeye: fix dependencies --------- Co-authored-by: Fábio de Andrade Barboza <f168817@dac.unicamp.br> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
28 lines
1.1 KiB
Python
28 lines
1.1 KiB
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 PyShippinglabel(PythonPackage):
|
|
"""Utilities for handling packages."""
|
|
|
|
homepage = "https://github.com/domdfcoding/shippinglabel"
|
|
pypi = "shippinglabel/shippinglabel-1.5.0.tar.gz"
|
|
|
|
version("1.5.0", sha256="b2332bf29853e29f877dab21f17f2a8632fd2b48f5f32a6fa0b254a6fdd0a451")
|
|
|
|
depends_on("py-wheel@0.34.2:", type="build")
|
|
depends_on("py-setuptools@40.6:", type="build")
|
|
conflicts("^py-setuptools@61")
|
|
depends_on("py-apeye@1:", type=("build", "run"))
|
|
depends_on("py-dist-meta@0.1.2:", type=("build", "run"))
|
|
depends_on("py-dom-toml@0.2.2:", type=("build", "run"))
|
|
depends_on("py-domdf-python-tools@3.1:", type=("build", "run"))
|
|
depends_on("py-packaging@20.9:", type=("build", "run"))
|
|
depends_on("py-platformdirs@2.3:", type=("build", "run"))
|
|
depends_on("py-typing-extensions@3.7.4.3:", type=("build", "run"))
|