spack/var/spack/repos/builtin/packages/py-python-jose/package.py
Marco De La Pierre e253184886
Re adding 4th chunk of nf-tools deps (#34974)
* Revert "Revert "4th chunk of nf-core deps from update/nextflow-tools (#34564)" (#34960)"

This reverts commit 891a63cae6.

* fix to py-python-multipart, as per PR review
2023-01-16 23:12:00 -08:00

24 lines
773 B
Python

# Copyright 2013-2022 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 PyPythonJose(PythonPackage):
"""JOSE implementation in Python"""
homepage = "http://github.com/mpdavis/python-jose"
pypi = "python-jose/python-jose-3.3.0.tar.gz"
version("3.3.0", sha256="55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a")
depends_on("python@3.6:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-rsa", type=("build", "run"))
depends_on("py-ecdsa@:0.14.1,0.16.0:", type=("build", "run"))
depends_on("py-pyasn1", type=("build", "run"))