22 lines
751 B
Python
22 lines
751 B
Python
# Copyright 2013-2019 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 PyGuidata(PythonPackage):
|
|
"""Automatic graphical user interfaces generation for easy dataset editing
|
|
and display"""
|
|
|
|
homepage = "https://github.com/PierreRaybaut/guidata"
|
|
url = "https://pypi.io/packages/source/g/guidata/guidata-1.7.5.zip"
|
|
|
|
version('1.7.5', '915188c02ad3c89951ee260db65d84a7')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-pyqt4', type=('build', 'run'))
|
|
depends_on('py-spyder@2.0:2.9.9', type=('build', 'run'))
|
|
depends_on('py-h5py', type=('build', 'run'))
|