spack/var/spack/repos/builtin/packages/py-qrcode/package.py
Todd Gamblin 3118647802
Update copyright year to 2024 (#41919)
It was time to run `spack license update-copyright-year` again.
2024-01-02 09:21:30 +01:00

27 lines
758 B
Python

# Copyright 2013-2024 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 PyQrcode(PythonPackage):
"""Generate QR codes"""
homepage = "https://github.com/lincolnloop/python-qrcode"
pypi = "qrcode/qrcode-7.3.1.tar.gz"
maintainers("sethrj")
license("BSD-3-Clause")
version("7.3.1", sha256="375a6ff240ca9bd41adc070428b5dfc1dcfbb0f2507f1ac848f6cded38956578")
depends_on("python@3.6:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-pillow", type=("build", "run"))
depends_on("py-typing-extensions", type=("build", "run"))