diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-14 20:06:04 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:51 +0100 |
| commit | 106221968bb6355a3d95ecf47eed589170be0aa9 (patch) | |
| tree | 3335c752616860843c0f309a1bd1b065e6de7dce /gnu/packages/python-compression.scm | |
| parent | d9e7b0f316b9970199fbdd4bc4fab53bf3326d24 (diff) | |
gnu: python-brotlicffi: Fix indentation.
* gnu/packages/python-compression.scm (python-brotlicffi): Fix indentation.
Change-Id: I1d19faaa147595159eff380f45bb2989ea2cf587
Diffstat (limited to 'gnu/packages/python-compression.scm')
| -rw-r--r-- | gnu/packages/python-compression.scm | 44 |
1 files changed, 24 insertions, 20 deletions
diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index 80f81840b0..433da65424 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -377,31 +377,35 @@ Jump conversion filter by CFFI for Python.") (package (name "python-brotlicffi") (version "1.0.9.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "brotlicffi" version)) - (sha256 - (base32 - "15kxgdiqcg0cm6h5xq3vkbhw7674673hcx3n2yicd3wx29l8l90c")) - (snippet - #~(begin - (use-modules (guix build utils)) - (delete-file-recursively "libbrotli"))))) + (source + (origin + (method url-fetch) + (uri (pypi-uri "brotlicffi" version)) + (sha256 + (base32 "15kxgdiqcg0cm6h5xq3vkbhw7674673hcx3n2yicd3wx29l8l90c")) + (snippet + #~(begin + (use-modules (guix build utils)) + (delete-file-recursively "libbrotli"))))) (build-system pyproject-build-system) (arguments (list - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'use-shared-brotli - (lambda _ - (setenv "USE_SHARED_BROTLI" "1")))))) - (propagated-inputs (list python-cffi)) - (inputs (list brotli)) - (native-inputs (list python-setuptools python-wheel)) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'use-shared-brotli + (lambda _ + (setenv "USE_SHARED_BROTLI" "1")))))) + (native-inputs + (list python-setuptools + python-wheel)) + (inputs + (list brotli)) + (propagated-inputs + (list python-cffi)) (home-page "https://github.com/python-hyper/brotlicffi") (synopsis "Python CFFI bindings to the Brotli library") - (description "This package provides Python CFFI bindings to the Brotli -library.") + (description + "This package provides Python CFFI bindings to the Brotli library.") (license license:expat))) (define-public python-inflate64 |
