mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-04-21-00-21 * Add unbuilt updated ruby gem packages to updates-2025-04-21-00-21 * Revert py3_ldapdomaindump Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-04-21-00-21 * add arm builds for py3_pillow Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add builds and rust rebuild Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
23 lines
706 B
Ruby
23 lines
706 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_xlsxwriter < Pip
|
|
description 'XlsxWriter is a Python module for creating Excel XLSX files.'
|
|
homepage 'https://xlsxwriter.readthedocs.io/'
|
|
version "3.2.3-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '798fe0dbb4f30024756faf9ce8ffe15c88b106e77d612d5e22b28726de37c1d4',
|
|
armv7l: '798fe0dbb4f30024756faf9ce8ffe15c88b106e77d612d5e22b28726de37c1d4',
|
|
i686: 'f82638b6670a984525ab6f6a0accfc22ce04a025113ddc5ba4667425728aabb8',
|
|
x86_64: '124c5e2239b9949318d153f73885f24bbea40bdce3ab164cbefea8e25fc70317'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|