diff options
author | Matthieu Dorier <matthieu.dorier@gmail.com> | 2021-12-28 22:05:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-28 14:05:09 -0700 |
commit | ae15c87bf01855441baf8648c57712cadfeb9837 (patch) | |
tree | d8d9b7b8931245f2fd42be9f3836ca32c699d236 | |
parent | cd19782943ce19c9df3619cb806d672dc3a3d823 (diff) | |
download | spack-ae15c87bf01855441baf8648c57712cadfeb9837.tar.gz spack-ae15c87bf01855441baf8648c57712cadfeb9837.tar.bz2 spack-ae15c87bf01855441baf8648c57712cadfeb9837.tar.xz spack-ae15c87bf01855441baf8648c57712cadfeb9837.zip |
[py-frozenlist] Added py-frozenlist package (#28137)
-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') |