[add] py-fraction: new package (#40554)

Co-authored-by: LydDeb <lyderic.debusschere@eolen.com>
This commit is contained in:
Lydéric Debusschère 2023-10-20 14:03:48 +02:00 committed by GitHub
parent 25aff66d34
commit 004d3e4cca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,22 @@
# Copyright 2013-2023 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.package import *
class PyFraction(PythonPackage):
"""
Fraction carries out all the fraction operations including addition, subtraction, multiplicati
on, division, reciprocation.
"""
homepage = "https://github.com/bradley101/fraction"
pypi = "Fraction/Fraction-2.2.0.tar.gz"
maintainers("LydDeb")
version("2.2.0", sha256="2c1179f20c8b749622935fe04db1c7f2987f011f2376bdad84c2a39c8e3d0fdb")
depends_on("py-setuptools", type="build")