guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit bdb0c60a22546b14d65127c7d01907148b7b8132
Author: Sharlatan Hellseher <[email protected]>
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 fd758ba0d7..7848ddcf25 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