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.
|
2016-11-12 11:16:30 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-11-12 11:16:30 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyIpythonGenutils(PythonPackage):
|
2016-11-12 11:16:30 +08:00
|
|
|
"""Vestigial utilities from IPython"""
|
|
|
|
|
|
|
|
homepage = "https://pypi.python.org/pypi/ipython_genutils"
|
|
|
|
url = "https://pypi.io/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz"
|
|
|
|
|
2019-02-28 02:45:28 +08:00
|
|
|
version('0.2.0', '5a4f9781f78466da0ea1a648f3e1f79f')
|
2016-11-12 11:16:30 +08:00
|
|
|
version('0.1.0', '9a8afbe0978adbcbfcb3b35b2d015a56')
|
|
|
|
|
2017-04-23 06:31:50 +08:00
|
|
|
depends_on('python@2.7:2.8,3.3:')
|