Skip to content
Snippets Groups Projects
Commit 10f07f77 authored by Dennis Terhorst's avatar Dennis Terhorst :rocket:
Browse files

exchanged `nesteddict` dependency for correct `nested_dict`

parent d186a492
No related branches found
No related tags found
No related merge requests found
# 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')
# 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')
......@@ -16,6 +16,6 @@ class WfMultiAreaModel(BundlePackage):
version("0.1")
depends_on("py-nesteddict")
depends_on("py-nested-dict")
depends_on("py-dicthash")
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment