gnu: python-gmpy2: Adjust indentation.

* gnu/packages/sagemath.scm (python-gmpy2): Reindent.
This commit is contained in:
Marius Bakke 2019-02-17 20:39:51 +01:00
parent 0b475e73e8
commit af5ead8b34
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 19 additions and 20 deletions

View File

@ -64,28 +64,27 @@ but it can be used independently.")
;; use an alpha release. On the other hand, Sage can be built without it. ;; use an alpha release. On the other hand, Sage can be built without it.
(define-public python-gmpy2 (define-public python-gmpy2
(package (package
(name "python-gmpy2") (name "python-gmpy2")
(version "2.0.8") (version "2.0.8")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (pypi-uri "gmpy2" version ".zip"))
(uri (pypi-uri "gmpy2" version ".zip")) (sha256
(sha256 (base32
(base32 "0grx6zmi99iaslm07w6c2aqpnmbkgrxcqjrqpfq223xri0r3w8yx"))))
"0grx6zmi99iaslm07w6c2aqpnmbkgrxcqjrqpfq223xri0r3w8yx")))) (build-system python-build-system)
(build-system python-build-system) (native-inputs
(native-inputs `(("unzip" ,unzip)))
`(("unzip" ,unzip))) (inputs
(inputs `(("gmp" ,gmp)
`(("gmp" ,gmp) ("mpfr" ,mpfr)
("mpfr" ,mpfr) ("mpc" ,mpc)))
("mpc" ,mpc))) (home-page "https://github.com/aleaxit/gmpy")
(home-page "https://github.com/aleaxit/gmpy") (synopsis
(synopsis
"GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x") "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x")
(description (description
"GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x") "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x")
(license license:lgpl3+))) (license license:lgpl3+)))
(define-public python2-gmpy2 (define-public python2-gmpy2
(package-with-python2 python-gmpy2)) (package-with-python2 python-gmpy2))