diff options
author | wspear <wjspear@gmail.com> | 2019-10-08 18:48:11 -0700 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-10-08 20:48:11 -0500 |
commit | 2e4bcf223c7d1bf1184b85d94d8267a91d078354 (patch) | |
tree | 42e87cf4a095ecbb5fa33d5ac57d0411dea59a97 /var | |
parent | 2794e52ddd58aced74300ce5cd1a2ca30825dd90 (diff) | |
download | spack-2e4bcf223c7d1bf1184b85d94d8267a91d078354.tar.gz spack-2e4bcf223c7d1bf1184b85d94d8267a91d078354.tar.bz2 spack-2e4bcf223c7d1bf1184b85d94d8267a91d078354.tar.xz spack-2e4bcf223c7d1bf1184b85d94d8267a91d078354.zip |
Added py-certipy package. Dependency of py-jupyterhub. (#13068)
* Added py-certipy package. Dependency of py-jupyterhub.
* Changed url to pypi
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-certipy/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-certipy/package.py b/var/spack/repos/builtin/packages/py-certipy/package.py new file mode 100644 index 0000000000..7bbf223d90 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-certipy/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2019 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 import * + + +class PyCertipy(PythonPackage): + """A simple python tool for creating certificate authorities + and certificates on the fly.""" + + homepage = "https://pypi.org/project/certipy/" + url = "https://pypi.io/packages/source/c/certipy/certipy-0.1.3.tar.gz" + + version('0.1.3', sha256='695704b7716b033375c9a1324d0d30f27110a28895c40151a90ec07ff1032859') + + depends_on('py-setuptools', type='build') + depends_on('py-pyopenssl', type=('build', 'run')) |