me
/
guix
Archived
1
0
Fork 0

gnu: python-cypari2: Adjust indentation.

* gnu/packages/sagemath.scm (python-cypari2): Reindent.
master
Andreas Enge 2019-02-17 22:15:51 +01:00
parent ec6f1a0eb9
commit ff33c38cde
No known key found for this signature in database
GPG Key ID: F7D5C9BF765C61E3
1 changed files with 14 additions and 14 deletions

View File

@ -29,32 +29,32 @@
(define-public python-cypari2 (define-public python-cypari2
(package (package
(name "python-cypari2") (name "python-cypari2")
(version "2.0.3") (version "2.0.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "cypari2" version)) (uri (pypi-uri "cypari2" version))
(sha256 (sha256
(base32 (base32
"0mghbmilmy34xp1d50xdx76sijqxmpkm2bcgx2v1mdji2ff7n0yc")))) "0mghbmilmy34xp1d50xdx76sijqxmpkm2bcgx2v1mdji2ff7n0yc"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
`(("python-cython" ,python-cython))) `(("python-cython" ,python-cython)))
(propagated-inputs (propagated-inputs
`(("python-cysignals" ,python-cysignals))) `(("python-cysignals" ,python-cysignals)))
(inputs (inputs
`(("gmp" ,gmp) `(("gmp" ,gmp)
("pari-gp", pari-gp))) ("pari-gp", pari-gp)))
(home-page "https://cypari2.readthedocs.io/") (home-page "https://cypari2.readthedocs.io/")
(synopsis (synopsis
"Python interface to the number theory library libpari") "Python interface to the number theory library libpari")
(description (description
"Cypari2 provides a Python interface to the number theory library "Cypari2 provides a Python interface to the number theory library
PARI/GP. It has been spun off from the SageMath mathematics software system, PARI/GP. It has been spun off from the SageMath mathematics software system,
but it can be used independently.") but it can be used independently.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public python2-cypari2 (define-public python2-cypari2
(package-with-python2 python-cypari2)) (package-with-python2 python-cypari2))