diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-15 08:43:57 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-15 08:52:36 +0300 |
commit | d2923babf3ac44cb6faa88317f77c98f3016820d (patch) | |
tree | 1d8549301459a0c7d4a719e3baf88026ef6de15b | |
parent | 33538f35eda24f7e60ec9c53daaa63272db2928d (diff) | |
download | guix-d2923babf3ac44cb6faa88317f77c98f3016820d.tar.gz guix-d2923babf3ac44cb6faa88317f77c98f3016820d.zip |
gnu: python-cysignals: Format with 'guix style'.
* gnu/packages/python-xyz.scm (python-cysignals): Reformat package with
'guix style'.
-rw-r--r-- | gnu/packages/python-xyz.scm | 34 |
1 files changed, 14 insertions, 20 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c82fa8d323..19352b41dc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18429,16 +18429,12 @@ to support both Python 2 and Python 3 with minimal overhead.") (name "python-cysignals") (version "1.11.4") (source - (origin - (method url-fetch) - (uri (pypi-uri "cysignals" version)) - (sha256 - (base32 "1hrqn976xhrq189x1086f3z9vzznjx21wsm3hqf90zx0alg347hg")))) + (origin + (method url-fetch) + (uri (pypi-uri "cysignals" version)) + (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,17 +18443,15 @@ to support both Python 2 and Python 3 with minimal overhead.") ;; when not installing into standard locations; the author is working ;; on a fix. #:tests? #f - #: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") - (description - "The cysignals package provides mechanisms to handle interrupts (and + #:phases (modify-phases %standard-phases + (add-before 'build 'configure + (assoc-ref gnu:%standard-phases 'configure))))) + (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, for mixed Cython/Python code or external C libraries and pure Cython code, respectively.") |