summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-iopath/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-iopath/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-iopath/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-iopath/package.py b/var/spack/repos/builtin/packages/py-iopath/package.py
new file mode 100644
index 0000000000..576454c6fa
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-iopath/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2023 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 PyIopath(PythonPackage):
+ """A library for providing I/O abstraction."""
+
+ homepage = "https://github.com/facebookresearch/iopath"
+ pypi = "iopath/iopath-0.1.10.tar.gz"
+
+ version("0.1.10", sha256="3311c16a4d9137223e20f141655759933e1eda24f8bff166af834af3c645ef01")
+
+ depends_on("py-setuptools", type="build")
+ depends_on("py-tqdm", type=("build", "run"))
+ depends_on("py-typing-extensions", type=("build", "run"))
+ depends_on("py-portalocker", type=("build", "run"))