2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-06-27 05:05:15 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-06-27 05:05:15 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class PyLzstring(PythonPackage):
|
|
|
|
"""lz-string for python."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/gkovacs/lz-string-python"
|
|
|
|
url = "https://pypi.io/packages/source/l/lzstring/lzstring-1.0.3.tar.gz"
|
|
|
|
|
|
|
|
version('1.0.3', '1c636543484629020a26432740f81443')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
|
|
depends_on('py-future', type=('build', 'run'))
|