py-efficientnet-pytorch: add new package (#25021)

This commit is contained in:
Adam J. Stewart 2021-07-21 14:33:45 -05:00 committed by GitHub
parent e1b2ab0105
commit 1f59163e8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,19 @@
# 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 PyEfficientnetPytorch(PythonPackage):
"""EfficientNet implemented in PyTorch."""
homepage = "https://github.com/lukemelas/efficientnet_pytorch"
pypi = "efficientnet_pytorch/efficientnet_pytorch-0.6.3.tar.gz"
version('0.6.3', sha256='6667459336893e9bf6367de3788ba449fed97f65da3b6782bf2204b6273a319f')
depends_on('python@3.5.0:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-torch', type=('build', 'run'))