py-lineenhancer: add new package (#25743)

This commit is contained in:
Desmond Orton 2021-09-03 03:59:06 -05:00 committed by GitHub
parent 0b9baf9ae3
commit d61439c26a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,22 @@
# Copyright 2013-2021 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 PyLineenhancer(PythonPackage):
"""The line enhancer is only used by crYOLO internally"""
homepage = "https://github.com/MPI-Dortmund/LineEnhancer"
pypi = "lineenhancer/lineenhancer-1.0.8.tar.gz"
maintainers = ['dorton21']
version('1.0.8', sha256='a1c7f2556110135d7298b0002674b669b8bbf23f94d63e3e3db8f17f2fd3efbe')
depends_on('py-setuptools', type='build')
depends_on('py-numpy@1.14.5:', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-mrcfile', type=('build', 'run'))