2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2019-08-22 07:43:44 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2019-08-22 07:43:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
class PyDeeptoolsintervals(PythonPackage):
|
|
|
|
"""A python module creating/accessing GTF-based interval trees with
|
|
|
|
associated meta-data."""
|
|
|
|
|
2020-12-30 08:44:04 +08:00
|
|
|
pypi = 'deeptoolsintervals/deeptoolsintervals-0.1.9.tar.gz'
|
2019-08-22 07:43:44 +08:00
|
|
|
|
|
|
|
version('0.1.9', sha256='7d94c36fd2b6f10d8b99e536d2672e8228971f1fc810497d33527bba2c40d4f6')
|
|
|
|
|
|
|
|
depends_on('python@2.7:', type=('build', 'run'))
|
|
|
|
depends_on('py-setuptools', type='build')
|