New package: py-bigfloat (#21239)

* New package: py-bigfloat

* Changes from review
This commit is contained in:
iarspider 2021-01-23 23:27:42 +01:00 committed by GitHub
parent e791725180
commit 8f45b27836
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# 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 PyBigfloat(PythonPackage):
"""Arbitrary-precision correctly-rounded floating-point arithmetic, via MPFR."""
homepage = "http://github.com/mdickinson/bigfloat"
pypi = "bigfloat/bigfloat-0.4.0.tar.gz"
version('0.4.0', sha256='58b96bde872aca5989d13d82eba3acf2aa1b94e22117dd72a16ba5911b0c0cb8')
depends_on('python@2.7:2.8,3.5:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-six', type=('build', 'run'))
depends_on('gmp', type='link')
depends_on('mpfr', type=('build', 'link'))