summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreugeneswalker <38933153+eugeneswalker@users.noreply.github.com>2023-04-28 13:51:52 -0500
committerGitHub <noreply@github.com>2023-04-28 13:51:52 -0500
commitcceeb96e0661793e395ade1c139f7261a97eeaae (patch)
tree838a06a40ccda6dc5300b6f28cd43a9eb6d9316d
parent7853ffc8816d76c9d569ae057fa3aa6da2bacca8 (diff)
downloadspack-cceeb96e0661793e395ade1c139f7261a97eeaae.tar.gz
spack-cceeb96e0661793e395ade1c139f7261a97eeaae.tar.bz2
spack-cceeb96e0661793e395ade1c139f7261a97eeaae.tar.xz
spack-cceeb96e0661793e395ade1c139f7261a97eeaae.zip
new package: py-amityping (#37262)
-rw-r--r--var/spack/repos/builtin/packages/py-amityping/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-amityping/package.py b/var/spack/repos/builtin/packages/py-amityping/package.py
new file mode 100644
index 0000000000..da6fd78fc0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-amityping/package.py
@@ -0,0 +1,21 @@
+# 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 PyAmityping(PythonPackage):
+ """Provides typing hints to be shared between LCLS-II analysis packages."""
+
+ homepage = "https://github.com/slac-lcls/amityping"
+ url = "https://github.com/slac-lcls/amityping/archive/refs/tags/1.1.12.tar.gz"
+
+ maintainers = ["valmar"]
+
+ version("1.1.12", sha256="e00e7102a53fa6ee343f018669f6b811d703a2da4728b497f80579bf89efbd3c")
+
+ depends_on("py-setuptools", type="build")
+ depends_on("py-numpy", type=("build", "run"))
+ depends_on("py-mypy-extensions", type=("build", "run"))