py-tomli-w: add new package (#29007)

This commit is contained in:
Manuela Kuhn 2022-02-16 17:21:09 +01:00 committed by GitHub
parent 5c1edbe00a
commit e84a2db23d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
# 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 PyTomliW(PythonPackage):
"""A lil' TOML writer."""
homepage = "https://github.com/hukkin/tomli-w"
pypi = "tomli_w/tomli_w-1.0.0.tar.gz"
version('1.0.0', sha256='f463434305e0336248cac9c2dc8076b707d8a12d019dd349f5c1e382dd1ae1b9')
depends_on('python@3.7:', type=('build', 'run'))
depends_on('py-flit-core@3.2.0:3', type='build')