Skip to content
Snippets Groups Projects
Commit df364e34 authored by Athanasios Karmas's avatar Athanasios Karmas
Browse files

Merge branch 'master' into 'master'

Add spack packages for tvb-framework dependencies that are not available on spack

See merge request akarmas/ebrains-spack-builds!16
parents 0f378173 fbf2e561
No related branches found
No related tags found
No related merge requests found
# 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 Formencode(PythonPackage):
"""
Requirement necessary for tvb-framework package.
"""
homepage = "https://pypi.org/project/FormEncode"
pypi = 'FormEncode/FormEncode-2.0.0.tar.gz'
maintainers = ['paulapopa']
version('2.0.0', 'f2eb92297417eb64e4aa8e368783a5ac1311e385d4f3ff3a181090608ea83711')
# python_requires
depends_on('python@3.8:', type=('build', 'run'))
# setup_requires
depends_on('py-pip', type=('build'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-six', type='run')
# 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')
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment