diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-frozenlist/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-frozenlist/package.py b/var/spack/repos/builtin/packages/py-frozenlist/package.py new file mode 100644 index 0000000000..1bc2a7fbdc --- /dev/null +++ b/var/spack/repos/builtin/packages/py-frozenlist/package.py @@ -0,0 +1,19 @@ +# 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 PyFrozenlist(PythonPackage): + """A list-like structure which implements collections.abc.MutableSequence.""" + + homepage = "https://github.com/aio-libs/frozenlist" + pypi = "frozenlist/frozenlist-1.2.0.tar.gz" + + version('1.2.0', sha256='68201be60ac56aff972dc18085800b6ee07973c49103a8aba669dee3d71079de') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') |