Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
27
Issue boards
Milestones
Wiki
Code
Merge requests
32
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
!356
Add NetPyNE and some of its dependencies
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add NetPyNE and some of its dependencies
vbragin/ebrains-spack-builds:add-netpyne
into
master
Overview
13
Commits
4
Pipelines
0
Changes
4
Merged
Valery Bragin
requested to merge
vbragin/ebrains-spack-builds:add-netpyne
into
master
1 year ago
Overview
13
Commits
4
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 3
775833b9
1 year ago
version 2
bf6c13b0
1 year ago
version 1
cc629cf5
1 year ago
master (base)
and
latest version
latest version
fca17d0b
4 commits,
1 year ago
version 3
775833b9
3 commits,
1 year ago
version 2
bf6c13b0
2 commits,
1 year ago
version 1
cc629cf5
1 commit,
1 year ago
4 files
+
83
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
packages/py-matplotlib-scalebar/package.py
0 → 100644
+
21
−
0
Options
# Copyright 2013-2022 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.package
import
*
class
PyMatplotlibScalebar
(
PythonPackage
):
"""
Matplotlib-Scalebar provides a new artist for matplotlib to display a scale bar, aka micron bar.
"""
homepage
=
"
https://kolibril13.github.io/plywood-gallery-matplotlib-scalebar/
"
pypi
=
"
matplotlib-scalebar/matplotlib-scalebar-0.8.1.tar.gz
"
git
=
"
https://github.com/ppinard/matplotlib-scalebar.git
"
# list of GitHub accounts to notify when the package is updated.
maintainers
=
[
"
ppinard
"
]
version
(
"
0.8.1
"
,
sha256
=
"
14887af1093579c5e6afae51a0a1ecc3f715cdbc5c4d7ef59cdeec76ee6bb15d
"
)
depends_on
(
"
py-matplotlib
"
,
type
=
(
"
build
"
,
"
run
"
))