py-transforms3d: add new package (#26448)

This commit is contained in:
Manuela Kuhn 2021-10-04 09:17:04 +02:00 committed by GitHub
parent 91598912f7
commit 9e0aabdef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,17 @@
# 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 PyTransforms3d(PythonPackage):
"""Functions for 3D coordinate transformations."""
homepage = "https://github.com/matthew-brett/transforms3d"
pypi = "transforms3d/transforms3d-0.3.1.tar.gz"
version('0.3.1', sha256='404c7797c78aa461cb8043081901fc5517cef342d5ff56becd74a7967ba88d78')
depends_on('py-numpy@1.5.1:', type=('build', 'run'))