spack/var/spack/repos/builtin/packages/py-pyglet/package.py
Todd Gamblin a8ccb8e116 copyrights: update all files with license headers for 2021
- [x] add `concretize.lp`, `spack.yaml`, etc. to licensed files
- [x] update all licensed files to say 2013-2021 using
      `spack license update-copyright-year`
- [x] appease mypy with some additions to package.py that needed
      for oneapi.py
2021-01-02 12:12:00 -08:00

23 lines
869 B
Python

# Copyright 2013-2021 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 import *
class PyPyglet(PythonPackage):
"""pyglet is a cross-platform windowing and multimedia library for Python
for developing games and other visually rich applications.
"""
homepage = "https://github.com/pyglet/pygle://github.com/pyglet/pyglet"
pypi = "pyglet/pyglet-1.4.2.tar.gz"
version('1.4.2', sha256='fda25ae5e99057f05bd339ea7972196d2f44e6fe8fb210951ab01f6609cdbdb7')
version('1.2.1', sha256='d1afb253d6de230e73698377566da333ef42e1c82190216aa7a0c1b729d6ff4d')
depends_on('py-setuptools', type='build')
depends_on('py-future', type=('build', 'run'))
depends_on('python@2.7:2.8,3.4:', type=('build', 'run'))