summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pint/package.py
blob: f78549a7dd10c4c8078c6b86d34f40ea628078bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2019 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 PyPint(PythonPackage):
    """Pint is a Python package to define, operate and manipulate physical
    quantities: the product of a numerical value and a unit of measurement.
    It allows arithmetic operations between them and conversions from and
    to different units."""

    homepage = "https://pypi.python.org/pypi/pint"
    url      = "https://pypi.io/packages/source/p/pint/Pint-0.8.1.tar.gz"

    version('0.8.1', 'afcf31443a478c32bbac4b00337ee9026a13d0e2ac83d30c79151462513bb0d4')

    depends_on('py-setuptools', type='build')