
Add a new check to `spack audit` to scan and verify that version constraints may be satisfied Modifications: - [x] Add a new check to `spack audit` to scan and verify that version constraints may be satisfied by some version declared in the built-in repository - [x] Fix issues found by CI Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
23 lines
828 B
Python
23 lines
828 B
Python
# Copyright 2013-2021 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"
|
|
pypi = "guidata/guidata-1.7.5.zip"
|
|
|
|
version('1.7.5', sha256='531d5e9ea784120c2e14212cfbd9c63f78fc7a77bcb9c5497be984584ee455c0')
|
|
|
|
# See `doc/installation.rst`
|
|
depends_on('python@2.6:2,3.2:', type=('build', 'run'))
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-pyqt5@5.5:', type=('build', 'run'))
|
|
depends_on('py-spyder@2.0.10:', type=('build', 'run')) # TODO: spyderlib == spyder?
|