From 49616d30203770393d7dd519af2c1ac2c7f074d4 Mon Sep 17 00:00:00 2001 From: Henrique Finger Zimerman Date: Sun, 17 Dec 2023 03:06:44 -0300 Subject: Add new python package to spack - py-pygame (game development package) (#41477) Add pygame to spack --- .../repos/builtin/packages/py-pygame/package.py | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-pygame/package.py diff --git a/var/spack/repos/builtin/packages/py-pygame/package.py b/var/spack/repos/builtin/packages/py-pygame/package.py new file mode 100644 index 0000000000..0ad8055da4 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pygame/package.py @@ -0,0 +1,23 @@ +# 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 PyPygame(PythonPackage): + """Pygame is a free and open-source cross-platform library for the development + of multimedia applications like video games using Python. It uses the Simple + DirectMedia Layer library and several other popular libraries to abstract + the most common functions, making writing these programs a more intuitive task.""" + + homepage = "https://www.pygame.org/" + url = "https://pypi.org/project/pygame/2.5.2/" + + license("LGPL-2.1-only") + + version("2.5.2", sha256="c1b89eb5d539e7ac5cf75513125fb5f2f0a2d918b1fd6e981f23bf0ac1b1c24a") + + depends_on("py-setuptools", type="build") + depends_on("python@3.6:", type=("build", "run")) -- cgit v1.2.3-70-g09d2