Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
40
Issue boards
Milestones
Wiki
Code
Merge requests
29
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
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!66
Add hippounit
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add hippounit
cnrs-neuroinformatics/ebrains-spack-builds:ADD_hippounit
into
master
Overview
2
Commits
4
Pipelines
0
Changes
3
Merged
Shailesh Appukuttan
requested to merge
cnrs-neuroinformatics/ebrains-spack-builds:ADD_hippounit
into
master
3 years ago
Overview
2
Commits
4
Pipelines
0
Changes
3
Expand
0
0
Merge request reports
Compare
master
version 1
306c465c
3 years ago
master (base)
and
latest version
latest version
bf127d6f
4 commits,
3 years ago
version 1
306c465c
3 commits,
3 years ago
3 files
+
46
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
packages/py-efel/package.py
0 → 100644
+
21
−
0
Options
# Copyright 2013-2021 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
PyEfel
(
PythonPackage
):
"""
Electrophys Feature Extract Library (eFEL)
"""
homepage
=
"
https://github.com/BlueBrain/eFEL
"
pypi
=
"
efel/efel-4.0.4.tar.gz
"
git
=
"
https://github.com/BlueBrain/eFEL.git
"
version
(
'
4.0.4
'
,
sha256
=
'
258c506776df609edc799338fd773e78f0f0315fd6f3e2f969478bda401a8894
'
)
depends_on
(
'
python@3.6.9:
'
)
depends_on
(
'
py-numpy@1.6:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-six
'
,
type
=
(
'
build
'
,
'
run
'
))
\ No newline at end of file