[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/08: gnu: Add python-bigfloat.
From: |
Ludovic Courtès |
Subject: |
06/08: gnu: Add python-bigfloat. |
Date: |
Thu, 31 May 2018 12:13:17 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit ec8a9892d12dcc016ec0e524cc475e74f0dbf280
Author: Konrad Hinsen <address@hidden>
Date: Mon May 28 10:30:38 2018 +0200
gnu: Add python-bigfloat.
* gnu/packages/python.scm (python-bigfloat, python2-bigfloat): New
variables.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/python.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 39a367a..0cdf825 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5155,6 +5155,29 @@ more advanced mathematics.")
(define-public python2-mpmath
(package-with-python2 python-mpmath))
+(define-public python-bigfloat
+ (package
+ (name "python-bigfloat")
+ (version "0.3.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "bigfloat" version))
+ (sha256
+ (base32 "0xd7q4l7v0f463diznjv4k9wlaks80pn9drdqmfifi7zx8qvybi6"))))
+ (build-system python-build-system)
+ (inputs
+ `(("mpfr" ,mpfr)))
+ (home-page "https://github.com/mdickinson/bigfloat")
+ (synopsis "Arbitrary precision floating-point arithmetic for Python")
+ (description
+ "This packages provides a Python interface to the MPFR library for
+multiprecision arithmetic.")
+ (license license:lgpl3+)))
+
+(define-public python2-bigfloat
+ (package-with-python2 python-bigfloat))
+
(define-public python-sympy
(package
(name "python-sympy")
- branch master updated (404e5c7 -> 555ab08), Ludovic Courtès, 2018/05/31
- 01/08: self: Reduce the set of dependencies., Ludovic Courtès, 2018/05/31
- 04/08: records: Make a couple of procedures available at expansion time., Ludovic Courtès, 2018/05/31
- 05/08: gnu: bear: Fix python path., Ludovic Courtès, 2018/05/31
- 02/08: file-systems: Always wait for devices to show up., Ludovic Courtès, 2018/05/31
- 03/08: system: 'read-boot-parameters' provides a more meaningful warning., Ludovic Courtès, 2018/05/31
- 06/08: gnu: Add python-bigfloat.,
Ludovic Courtès <=
- 07/08: gnu: Add emacs-org-caldav., Ludovic Courtès, 2018/05/31
- 08/08: gnu: Add emacs-zotxt., Ludovic Courtès, 2018/05/31