Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
easyblock = 'PythonPackage'

name = 'Brotli-python'
version = '1.1.0'

homepage = 'https://github.com/google/brotli'
description = """Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination
of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio
comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate
but offers more dense compression.
The specification of the Brotli Compressed Data Format is defined in RFC 7932."""

toolchain = {'name': 'GCCcore', 'version': '14.3.0'}

source_urls = ['https://pypi.python.org/packages/source/B/Brotli']
sources = ['Brotli-%(version)s.tar.gz']
checksums = ['81de08ac11bcb85841e440c13611c00b67d3bf82698314928d0b676362546724']

builddependencies = [
('binutils', '2.44'),
]

dependencies = [
('Brotli', '1.1.0'),
('Python', '3.13.5'),
]

options = {'modulename': 'brotli'}

moduleclass = 'tools'
Loading