Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Klaus Noelp
ebrains-spack-builds
Commits
af04c2bd
Commit
af04c2bd
authored
3 years ago
by
Paula Popa
Browse files
Options
Downloads
Patches
Plain Diff
Add spack packages for tvb-framework missing dependencies (pyaescrypt and formencode).
parent
a2941e5e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
packages/formencode/package.py
+27
-0
27 additions, 0 deletions
packages/formencode/package.py
packages/pyaescrypt/package.py
+26
-0
26 additions, 0 deletions
packages/pyaescrypt/package.py
with
53 additions
and
0 deletions
packages/formencode/package.py
0 → 100644
+
27
−
0
View file @
af04c2bd
# 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
'
)
This diff is collapsed.
Click to expand it.
packages/pyaescrypt/package.py
0 → 100644
+
26
−
0
View file @
af04c2bd
# 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
'
)
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment