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
10f07f77
Commit
10f07f77
authored
2 years ago
by
Dennis Terhorst
Browse files
Options
Downloads
Patches
Plain Diff
exchanged `nesteddict` dependency for correct `nested_dict`
parent
d186a492
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
packages/py-nested-dict/package.py
+26
-0
26 additions, 0 deletions
packages/py-nested-dict/package.py
packages/py-nesteddict/package.py
+0
-39
0 additions, 39 deletions
packages/py-nesteddict/package.py
packages/wf-multi-area-model/package.py
+1
-1
1 addition, 1 deletion
packages/wf-multi-area-model/package.py
with
27 additions
and
40 deletions
packages/py-nested-dict/package.py
0 → 100644
+
26
−
0
View file @
10f07f77
# 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
import
*
class
PyNestedDict
(
PythonPackage
):
"""
FIXME: Put a proper description of your package here.
"""
homepage
=
"
http://nested-dict.readthedocs.org
"
pypi
=
"
nested_dict/nested_dict-1.61.tar.gz
"
git
=
"
https://github.com/bunbun/nested-dict
"
# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['terhorstd', 'bunbun']
version
(
'
1.61
'
,
sha256
=
'
de0fb5bac82ba7bcc23736f09373f18628ea57f92bbaa13480d23f261c41e771
'
)
# FIXME: Add a build backend, usually defined in pyproject.toml. If no such file
# exists, use setuptools.
# depends_on('py-setuptools', type='build')
# depends_on('py-flit-core', type='build')
# depends_on('py-poetry-core', type='build')
This diff is collapsed.
Click to expand it.
packages/py-nesteddict/package.py
deleted
100644 → 0
+
0
−
39
View file @
d186a492
# 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)
# ----------------------------------------------------------------------------
# If you submit this package back to Spack as a pull request,
# please first remove this boilerplate and all FIXME comments.
#
# This is a template package file for Spack. We've put "FIXME"
# next to all the things you'll want to change. Once you've handled
# them, you can save this file and test your package like this:
#
# spack install py-nesteddict
#
# You can edit this file again by typing:
#
# spack edit py-nesteddict
#
# See the Spack documentation for more information on packaging.
# ----------------------------------------------------------------------------
from
spack
import
*
class
PyNesteddict
(
PythonPackage
):
"""
A Python class that subclasses dict to allow dicts that allow dotted key
access e.g, dict[
"
a.b.c
'
]=7
"""
homepage
=
"
https://github.com/jdrumgoole/nesteddict
"
pypi
=
"
nesteddict/nesteddict-0.1.3.tar.gz
"
# FIXME: Add a list of GitHub accounts to
# notify when the package is updated.
# maintainers = ['github_user1', 'github_user2']
version
(
'
0.1.3
'
,
sha256
=
'
07e5f59684df992559e6f25210edec8f5bc1cfc7114d9332d690f30fc1e49f47
'
)
depends_on
(
'
py-setuptools
'
,
type
=
'
build
'
)
This diff is collapsed.
Click to expand it.
packages/wf-multi-area-model/package.py
+
1
−
1
View file @
10f07f77
...
...
@@ -16,6 +16,6 @@ class WfMultiAreaModel(BundlePackage):
version
(
"
0.1
"
)
depends_on
(
"
py-nesteddict
"
)
depends_on
(
"
py-nested
-
dict
"
)
depends_on
(
"
py-dicthash
"
)
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