summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pyfaidx/package.py
blob: ee4d4021b19e7d381bb9f7065404782281ac6331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2023 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.package import *


class PyPyfaidx(PythonPackage):
    """pyfaidx: efficient pythonic random access to fasta subsequences"""

    pypi = "pyfaidx/pyfaidx-0.5.5.2.tar.gz"

    license("BSD-3-Clause")

    version("0.5.5.2", sha256="9ac22bdc7b9c5d995d32eb9dc278af9ba970481636ec75c0d687d38c26446caa")

    depends_on("py-setuptools@0.7:", type=("build", "run"))
    depends_on("py-six", type=("build", "run"))