Skip to content
Snippets Groups Projects
package.py 737 B
# Copyright 2013-2020 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 Pyaescrypt(PythonPackage):
    """
    Requirement necessary for tvb-framework package.
    """

    homepage = "https://pypi.org/project/pyAesCrypt"
    pypi = 'pyAesCrypt/pyAesCrypt-6.0.0.tar.gz'

    maintainers = ['paulapopa']

    version('6.0.0', 'a26731960fb24b80bd3c77dbff781cab20e77715906699837f73c9fcb2f44a57')

    # python_requires
    depends_on('python@3.8:', type=('build', 'run'))

    # setup_requires
    depends_on('py-setuptools', type='build')
    depends_on('py-cryptography', type='run')