summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-transforms3d/package.py
blob: 97540ad2fb6112536acc03eab81600915a813ad8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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'))