summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Meyers <meyersbs@users.noreply.github.com>2023-03-18 18:00:46 -0400
committerGitHub <noreply@github.com>2023-03-18 17:00:46 -0500
commit32154e6fc703589534d455f55379bc5c96c513af (patch)
treef4874d4fb05979d04655bd15e03f9afc8eddc0bb
parent6618b0c830da2f5869ae54c1102153601b0b946e (diff)
downloadspack-32154e6fc703589534d455f55379bc5c96c513af.tar.gz
spack-32154e6fc703589534d455f55379bc5c96c513af.tar.bz2
spack-32154e6fc703589534d455f55379bc5c96c513af.tar.xz
spack-32154e6fc703589534d455f55379bc5c96c513af.zip
New package py-pyisemail (#36112)
-rw-r--r--var/spack/repos/builtin/packages/py-pyisemail/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyisemail/package.py b/var/spack/repos/builtin/packages/py-pyisemail/package.py
new file mode 100644
index 0000000000..fc86cdd2d0
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pyisemail/package.py
@@ -0,0 +1,22 @@
+# 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 PyPyisemail(PythonPackage):
+ """pyIsEmail is a no-nonsense approach for checking whether that user-supplied
+ email address could be real."""
+
+ homepage = "https://github.com/michaelherold/pyIsEmail"
+ pypi = "pyisemail/pyisemail-2.0.1.tar.gz"
+
+ maintainers("meyersbs")
+
+ version("2.0.1", sha256="daf4b3fb2150a38f406b0aaba729e19fcd638a6d1c0549c25ff54c7b804618f8")
+
+ depends_on("py-hatchling", type="build")
+ depends_on("python@3.7:", type=("build", "run"))
+ depends_on("py-dnspython@2.0.0:", type=("build", "run"))