summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2021-09-29 18:05:36 +0200
committerGitHub <noreply@github.com>2021-09-29 18:05:36 +0200
commit24263c9e9229be85c1a5047a412c16191de7fa73 (patch)
treec117868e594ae74979456fdd24ee7c5eab336293 /var
parent7cd3af5d52dd653df3ebb1b2c8122a0831af6001 (diff)
downloadspack-24263c9e9229be85c1a5047a412c16191de7fa73.tar.gz
spack-24263c9e9229be85c1a5047a412c16191de7fa73.tar.bz2
spack-24263c9e9229be85c1a5047a412c16191de7fa73.tar.xz
spack-24263c9e9229be85c1a5047a412c16191de7fa73.zip
New package: py-async-lru (#26328)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-async-lru/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-async-lru/package.py b/var/spack/repos/builtin/packages/py-async-lru/package.py
new file mode 100644
index 0000000000..a01cc695e8
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-async-lru/package.py
@@ -0,0 +1,20 @@
+# 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 PyAsyncLru(PythonPackage):
+ """Simple lru_cache for asyncio"""
+
+ homepage = "https://github.com/wikibusiness/async_lru"
+ pypi = "async_lru/async_lru-1.0.2.tar.gz"
+
+ maintainers = ['iarspider']
+
+ version('1.0.2', sha256='baa898027619f5cc31b7966f96f00e4fc0df43ba206a8940a5d1af5336a477cb')
+
+ depends_on('python@3.6:', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')