diff options
author | Lydéric Debusschère <lyderic.de@gmail.com> | 2023-09-18 18:06:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-18 11:06:23 -0500 |
commit | 1b3a2ba06ae09e092feb6b184e16434e0475613e (patch) | |
tree | 61fbbe6d07af1f1e24bbeaccfc41849682c9044d | |
parent | dc22a80f86a8a8ebd37b5ef067ff179752d784a2 (diff) | |
download | spack-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)
-rw-r--r-- | var/spack/repos/builtin/packages/py-ldap3/package.py | 20 |
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")) |