Skip to content
Snippets Groups Projects
package.py 674 B
# 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 PyQuantitiesScidash(PythonPackage):
    """Support for physical quantities with units, based on numpy
    """

    homepage = "http://python-quantities.readthedocs.io/"
    pypi     = "quantities-scidash/quantities-scidash-0.12.4.3.tar.gz"
    git      = "https://github.com/python-quantities/python-quantities.git"

    version('0.12.4.3', sha256='c281383b989ae19bfe1526c09e452c82880b633a735f9494d8bb469412a33ea2')

    depends_on('python@3.6.9:')