diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-01-22 10:11:19 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-01-22 17:11:19 +0100 |
commit | 636d6007baaec34f6845b8e3c43e31651972ffd2 (patch) | |
tree | 0d16b3e4ed1d92631f1fb0bf3323761f628d5391 | |
parent | 39725e07841f03da2a3f1a16a5f678ec224833f7 (diff) | |
download | spack-636d6007baaec34f6845b8e3c43e31651972ffd2.tar.gz spack-636d6007baaec34f6845b8e3c43e31651972ffd2.tar.bz2 spack-636d6007baaec34f6845b8e3c43e31651972ffd2.tar.xz spack-636d6007baaec34f6845b8e3c43e31651972ffd2.zip |
py-pyvcf: new package at 0.6.0 (#10375)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyvcf/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyvcf/package.py b/var/spack/repos/builtin/packages/py-pyvcf/package.py new file mode 100644 index 0000000000..23b35513c0 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyvcf/package.py @@ -0,0 +1,17 @@ +# 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 PyPyvcf(PythonPackage): + """A Variant Call Format reader for Python""" + + homepage = "http://pyvcf.readthedocs.org/en/latest/index.html" + url = "https://github.com/jamescasbon/PyVCF/archive/v0.6.0.tar.gz" + + version('0.6.0', sha256='a360376d445e27b74db3216f6931a94a4ea99aa4a7f4b4a8347e7f11836698b9') + + depends_on('py-setuptools', type='build') |