py-cyvcf2: new package at 0.11.7 (#15908)

* py-cyvcf2: new package at 0.11.7

* py-cyvcf2: update dependencies
This commit is contained in:
Justin S 2020-04-07 20:41:18 -05:00 committed by GitHub
parent 7927394fb3
commit 998dc7a121
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,25 @@
# Copyright 2013-2020 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 PyCyvcf2(PythonPackage):
"""fast vcf parsing with cython + htslib"""
homepage = "https://github.com/brentp/cyvcf2"
url = "https://pypi.io/packages/source/c/cyvcf2/cyvcf2-0.11.7.tar.gz"
version('0.11.7', sha256='a4b6229b89a0a1043684c65cbdd702c366a8800dc3591fb44c4b5a08640cbeec')
depends_on('python@2.7:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-cython@0.23.3:', type='build')
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-coloredlogs', type=('build', 'run'))
depends_on('py-click', type=('build', 'run'))
depends_on('curl')