diff options
author | Justin Stanley <molecuul@users.noreply.github.com> | 2019-01-20 07:16:43 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-01-20 14:16:43 +0100 |
commit | bb1f8b0e3e4298fc256359395c901fc3db84a033 (patch) | |
tree | 8b04e7dc5710a63872c89abbc7eb15478a4dbcc8 | |
parent | ab00de9e817db66ed0eab2bf3ad13d20b2d78173 (diff) | |
download | spack-bb1f8b0e3e4298fc256359395c901fc3db84a033.tar.gz spack-bb1f8b0e3e4298fc256359395c901fc3db84a033.tar.bz2 spack-bb1f8b0e3e4298fc256359395c901fc3db84a033.tar.xz spack-bb1f8b0e3e4298fc256359395c901fc3db84a033.zip |
py-pyfaidx: new package at 0.5.5.2 (#10376)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyfaidx/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyfaidx/package.py b/var/spack/repos/builtin/packages/py-pyfaidx/package.py new file mode 100644 index 0000000000..41540cf892 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyfaidx/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 PyPyfaidx(PythonPackage): + """pyfaidx: efficient pythonic random access to fasta subsequences""" + + homepage = "https://pypi.org/project/pyfaidx/" + url = "https://pypi.io/packages/source/p/pyfaidx/pyfaidx-0.5.5.2.tar.gz" + + version('0.5.5.2', sha256='9ac22bdc7b9c5d995d32eb9dc278af9ba970481636ec75c0d687d38c26446caa') + + depends_on('py-setuptools', type='build') |