summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorJennifer Herting <jen@herting.cc>2020-04-03 14:58:02 -0400
committerGitHub <noreply@github.com>2020-04-03 13:58:02 -0500
commit0a9d4f6720a0695ee08095a5b051b8dd814a52f1 (patch)
tree3b34f46ee6b9e6f2dbd1239acf29b86e6633c955 /var
parent5e5b68c063d16e5574a66ffa216299d2d30f71d4 (diff)
downloadspack-0a9d4f6720a0695ee08095a5b051b8dd814a52f1.tar.gz
spack-0a9d4f6720a0695ee08095a5b051b8dd814a52f1.tar.bz2
spack-0a9d4f6720a0695ee08095a5b051b8dd814a52f1.tar.xz
spack-0a9d4f6720a0695ee08095a5b051b8dd814a52f1.zip
New package: py-portalocker (#15854)
* [py-portalocker] Create template * [py-portalocker] added homepage and description * [py-portalocker] specified dependencies * [py-portalocker] cleaned up fixmes * [py-portalocker] removed unnecessary python dependency listing
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-portalocker/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-portalocker/package.py b/var/spack/repos/builtin/packages/py-portalocker/package.py
new file mode 100644
index 0000000000..f4aa514550
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-portalocker/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2019 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 PyPortalocker(PythonPackage):
+ """Portalocker is a library to provide an easy API to file
+ locking."""
+
+ homepage = "https://github.com/WoLpH/portalocker"
+ url = "https://github.com/WoLpH/portalocker/archive/v1.6.0.tar.gz"
+
+ version('1.6.0', sha256='084ff315ccb9fb38a7c06155d409da5df29647da7c6d2bc2b24637f9f79001ff')
+
+ depends_on('py-setuptools@38.3.0:', type='build')