guix_mirror_bot pushed a commit to branch python-team in repository guix. commit 3e150cf2aed5767502c1bf2c49338d3fcd588d55 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Mon Jul 14 20:06:04 2025 +0100
gnu: python-brotlicffi: Fix indentation. * gnu/packages/python-compression.scm (python-brotlicffi): Fix indentation. Change-Id: I1d19faaa147595159eff380f45bb2989ea2cf587 --- gnu/packages/python-compression.scm | 44 ++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/gnu/packages/python-compression.scm b/gnu/packages/python-compression.scm index edfdc6d515..d114875150 100644 --- a/gnu/packages/python-compression.scm +++ b/gnu/packages/python-compression.scm @@ -354,31 +354,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