From 32a68fbbd4186a513aecdc42026d797ff8410496 Mon Sep 17 00:00:00 2001 From: Jen Herting Date: Thu, 22 Oct 2020 15:55:14 -0400 Subject: New Package: py-fastrlock (#19467) * [py-fastrlock] created template * [py-fastrlock] added dependencies and setting --with-cython * [py-fastrlock] added homepage and description. removed fixmes --- .../repos/builtin/packages/py-fastrlock/package.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-fastrlock/package.py (limited to 'var') diff --git a/var/spack/repos/builtin/packages/py-fastrlock/package.py b/var/spack/repos/builtin/packages/py-fastrlock/package.py new file mode 100644 index 0000000000..83825227c5 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-fastrlock/package.py @@ -0,0 +1,24 @@ +# Copyright 2013-2020 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 PyFastrlock(PythonPackage): + """This is a C-level implementation of a fast, re-entrant, + optimistic lock for CPython.""" + + homepage = "https://github.com/scoder/fastrlock" + url = "https://github.com/scoder/fastrlock/archive/0.5.tar.gz" + + version('0.5', sha256='756dd8aa9af9848caa9bbf814c4dec1065ee38cc38768158e616ec11b6f45cc8') + + depends_on('py-setuptools', type='build') + depends_on('py-cython', type='build') + + def build_args(self, spec, prefix): + args = [] + args.append('--with-cython') + return args -- cgit v1.2.3-60-g2f50