21 lines
556 B
Python
21 lines
556 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyInterlap(PythonPackage):
|
|
"""interlap: fast, simple interval overlap"""
|
|
|
|
homepage = "https://brentp.github.io/interlap/index.html"
|
|
pypi = "interlap/interlap-0.2.7.tar.gz"
|
|
|
|
maintainers("snehring")
|
|
|
|
license("MIT", checked_by="snehring")
|
|
|
|
version("0.2.7", sha256="31e4f30c54b067c4939049f5d8131ae5e2fa682ec71aa56f89c0e5b900806ec9")
|
|
|
|
depends_on("py-setuptools", type="build")
|