summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorLydéric Debusschère <lyderic.de@gmail.com>2023-09-18 18:06:23 +0200
committerGitHub <noreply@github.com>2023-09-18 11:06:23 -0500
commit1b3a2ba06ae09e092feb6b184e16434e0475613e (patch)
tree61fbbe6d07af1f1e24bbeaccfc41849682c9044d /var
parentdc22a80f86a8a8ebd37b5ef067ff179752d784a2 (diff)
downloadspack-1b3a2ba06ae09e092feb6b184e16434e0475613e.tar.gz
spack-1b3a2ba06ae09e092feb6b184e16434e0475613e.tar.bz2
spack-1b3a2ba06ae09e092feb6b184e16434e0475613e.tar.xz
spack-1b3a2ba06ae09e092feb6b184e16434e0475613e.zip
[add] py-ldap3: new recipe, required by py-metomi-rose (#39982)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-ldap3/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ldap3/package.py b/var/spack/repos/builtin/packages/py-ldap3/package.py
new file mode 100644
index 0000000000..646870b297
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-ldap3/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 PyLdap3(PythonPackage):
+ """A strictly RFC 4510 conforming LDAP V3 pure Python client library."""
+
+ homepage = "https://github.com/cannatag/ldap3"
+ pypi = "ldap3/ldap3-2.9.1.tar.gz"
+
+ maintainers("LydDeb")
+
+ version("2.9.1", sha256="f3e7fc4718e3f09dda568b57100095e0ce58633bcabbed8667ce3f8fbaa4229f")
+
+ depends_on("py-setuptools", type="build")
+ depends_on("py-pyasn1@0.4.6:", type=("build", "run"))