py-jwcrypto: new package (#42783)
* adds the spack recipe for py-jwcrypto * split long line to fix E501 * Specify versions for py-cryptography and py-typing-extensions Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> --------- Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
parent
4bd305b6d3
commit
2278816cb3
1 changed files with 31 additions and 0 deletions
31
var/spack/repos/builtin/packages/py-jwcrypto/package.py
Normal file
31
var/spack/repos/builtin/packages/py-jwcrypto/package.py
Normal file
|
@ -0,0 +1,31 @@
|
|||
# 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 PyJwcrypto(PythonPackage):
|
||||
"""
|
||||
JWCrypto is an implementation of the Javascript Object Signing and Encryption (JOSE)
|
||||
Web Standards as they are being developed in the JOSE IETF Working Group and related
|
||||
technology.
|
||||
|
||||
JWCrypto uses the Cryptography package for all the crypto functions.
|
||||
"""
|
||||
|
||||
homepage = "https://jwcrypto.readthedocs.io/en/latest/"
|
||||
pypi = "jwcrypto/jwcrypto-1.5.4.tar.gz"
|
||||
git = "https://github.com/latchset/jwcrypto"
|
||||
|
||||
maintainers("jeremyfix")
|
||||
|
||||
license("LGPL-3.0")
|
||||
|
||||
version("1.5.4", sha256="0815fbab613db99bad85691da5f136f8860423396667728a264bcfa6e1db36b0")
|
||||
|
||||
depends_on("py-setuptools", type="build")
|
||||
|
||||
depends_on("py-cryptography@3.4:", type=("build", "run"))
|
||||
depends_on("py-typing-extensions@4.5:", type=("build", "run"))
|
Loading…
Reference in a new issue