gnu: python-cysignals: Format with 'guix style'.

* gnu/packages/python-xyz.scm (python-cysignals): Reformat package with
'guix style'.
This commit is contained in:
Efraim Flashner 2023-10-15 08:43:57 +03:00
parent 33538f35ed
commit d2923babf3
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -18435,10 +18435,6 @@ (define-public python-cysignals
(sha256
(base32 "1hrqn976xhrq189x1086f3z9vzznjx21wsm3hqf90zx0alg347hg"))))
(build-system python-build-system)
(native-inputs
(list python-cython-3 python-sphinx))
(inputs
(list pari-gp))
(arguments
`(#:modules ((guix build python-build-system)
((guix build gnu-build-system) #:prefix gnu:)
@ -18447,15 +18443,13 @@ (define-public python-cysignals
;; when not installing into standard locations; the author is working
;; on a fix.
#:tests? #f
#:phases
(modify-phases %standard-phases
(add-before
'build 'configure
#:phases (modify-phases %standard-phases
(add-before 'build 'configure
(assoc-ref gnu:%standard-phases 'configure)))))
(home-page
"https://github.com/sagemath/cysignals")
(synopsis
"Handling of interrupts and signals for Cython")
(native-inputs (list python-cython-3 python-sphinx))
(inputs (list pari-gp))
(home-page "https://github.com/sagemath/cysignals")
(synopsis "Handling of interrupts and signals for Cython")
(description
"The cysignals package provides mechanisms to handle interrupts (and
other signals and errors) in Cython code, using two related approaches,