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
!47
adds LFPy@2.2.3
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
adds LFPy@2.2.3
ehagen/ebrains-spack-builds:lfpy
into
master
Overview
2
Commits
3
Pipelines
0
Changes
2
Merged
Espen Hagen
requested to merge
ehagen/ebrains-spack-builds:lfpy
into
master
3 years ago
Overview
2
Commits
3
Pipelines
0
Changes
2
Expand
This PR adds the LFPy Python package.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
31cbe8a1
3 commits,
3 years ago
2 files
+
30
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
packages/py-lfpy/package.py
0 → 100644
+
28
−
0
Options
from
spack
import
*
class
PyLFPy
(
PythonPackage
):
"""
A Python package for calculating extracellular electric and magnetic
signals of neural activity from multicompartment neuron models.
"""
homepage
=
'
https://LFPy.readthedocs.io
'
pypi
=
"
LFPy/LFPy-2.2.3.tar.gz
"
git
=
'
https://github.com/LFPy/LFPy.git
'
maintainers
=
[
'
espenhgn
'
]
version
(
'
2.2.3
'
,
sha256
=
'
fc0a3b784621d27cffabe4b6bcc13724f338c1dd
'
)
depends_on
(
'
python@3.6:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-pip
'
,
type
=
'
build
'
)
depends_on
(
'
py-h5py
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-matplotlib
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-mpi4py
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-numpy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-scipy
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-setuptools
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-cython
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
neuron@7.7.2:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-lfpykit@0.3:
'
,
type
=
(
'
build
'
,
'
run
'
))
depends_on
(
'
py-pytest
'
,
type
=
'
test
'
)