summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyrect/package.py
blob: be928b381b6cc6bbb86c3c5fae3a3d75276e8687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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 PyPyrect(PythonPackage):
    """PyRect is a simple module with a Rect class for
    Pygame-like rectangular areas."""

    homepage = "https://github.com/asweigart/pyrect"
    pypi = "PyRect/PyRect-0.1.4.tar.gz"

    version("0.1.4", sha256="3b2fa7353ce32a11aa6b0a15495968d2a763423c8947ae248b92c037def4e202")

    depends_on("py-setuptools", type="build")