py-einops: add new package (#25812)

This commit is contained in:
Adam J. Stewart 2021-09-07 00:40:18 -05:00 committed by GitHub
parent ca58cb701c
commit 5abbd094c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,20 @@
# 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 PyEinops(PythonPackage):
"""Flexible and powerful tensor operations for readable and reliable code.
Supports numpy, pytorch, tensorflow, and others."""
homepage = "https://github.com/arogozhnikov/einops"
pypi = "einops/einops-0.3.2.tar.gz"
version('0.3.2', sha256='5200e413539f0377f4177ef00dc019968f4177c49b1db3e836c7883df2a5fe2e')
depends_on('python@3.6:', type=('build', 'run'))
depends_on('py-setuptools', type='build')