py-dictdiffer: new recipe (#21151)

* py-dictdiffer: new recipie

* Update var/spack/repos/builtin/packages/py-dictdiffer/package.py

add correct setuptools dependency

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>

Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
This commit is contained in:
Andrew-Dunning-NNL 2021-01-19 17:56:53 -05:00 committed by GitHub
parent 6de193fd27
commit c6cb0d7869
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
# 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 PyDictdiffer(PythonPackage):
"""Dictdiffer is a helper module that helps you to diff and patch dictionares."""
homepage = "https://github.com/inveniosoftware/dictdiffer"
pypi = "dictdiffer/dictdiffer-0.8.1.tar.gz"
version('0.8.1', sha256='1adec0d67cdf6166bda96ae2934ddb5e54433998ceab63c984574d187cc563d2')
depends_on('python@3.4:', type=('build', 'run'))
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-setuptools-scm@3.1.0:', type=('build'))