summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyld/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-pyld/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-pyld/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyld/package.py b/var/spack/repos/builtin/packages/py-pyld/package.py
new file mode 100644
index 0000000000..382b0f62fc
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyld/package.py
@@ -0,0 +1,22 @@
+# Copyright 2013-2022 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.package import *
+
+
+class PyPyld(PythonPackage):
+ """This library is an implementation of the JSON-LD specification in
+ Python.
+ """
+
+ homepage = "https://github.com/digitalbazaar/pyld"
+ pypi = "PyLD/PyLD-2.0.3.tar.gz"
+
+ version("2.0.3", sha256="287445f888c3a332ccbd20a14844c66c2fcbaeab3c99acd506a0788e2ebb2f82")
+
+ depends_on("py-cachetools", type=("build", "run"))
+ depends_on("py-frozendict", type=("build", "run"))
+ depends_on("py-lxml", type=("build", "run"))
+ depends_on("py-setuptools", type=("build"))