2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2021-11-13 02:31:47 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2021-11-13 02:31:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PyAutomat(PythonPackage):
|
|
|
|
"""Self-service finite-state machines for the programmer on the go."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/glyph/Automat"
|
|
|
|
pypi = "Automat/Automat-20.2.0.tar.gz"
|
|
|
|
|
|
|
|
version('20.2.0', sha256='7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-setuptools-scm', type='build')
|
|
|
|
depends_on('py-m2r', type='build')
|
|
|
|
|
|
|
|
depends_on('py-attrs@19.2.0:', type=('build', 'run'))
|
|
|
|
depends_on('py-six', type=('build', 'run'))
|