py-multipledispatch: new package at v0.6.0 (#20571)

This commit is contained in:
a-saitoh-fj 2020-12-28 20:54:36 +09:00 committed by GitHub
parent 82c74c49ea
commit 0f6ddacc98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,18 @@
# Copyright 2013-2020 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 PyMultipledispatch(PythonPackage):
"""A relatively sane approach to multiple dispatch in Python."""
homepage = "https://multiple-dispatch.readthedocs.io/"
url = "https://github.com/mrocklin/multipledispatch/archive/0.6.0.tar.gz"
version('0.6.0', sha256='649f6e61b8a6ce581c75f32365c926b55495c01b8177135408b83aa03886cde0')
depends_on('py-setuptools', type='build')
depends_on('py-six', type=('build', 'run'))