
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>
22 lines
854 B
Python
22 lines
854 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 PyYahmm(PythonPackage):
|
|
"""YAHMM is a HMM package for Python, implemented in Cython for speed."""
|
|
|
|
pypi = "yahmm/yahmm-1.1.3.zip"
|
|
|
|
version('1.1.3', sha256='fe3614ef96da9410468976756fb93dc8235485242c05df01d8e5ed356a7dfb43')
|
|
version('1.1.2', sha256='5e81077323dc6da9fb792169b639f29e5293b0c8272e4c22b204ca95ac0df90a')
|
|
|
|
depends_on('py-cython@0.20.1:', type=('build', 'run'))
|
|
depends_on('py-numpy@1.8.0:', type=('build', 'run'))
|
|
depends_on('py-scipy@0.13.3:', type=('build', 'run'))
|
|
depends_on('py-matplotlib@1.3.1:', type=('build', 'run'))
|
|
depends_on('py-networkx@1.8.1:', type=('build', 'run'))
|