mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt py3_xlsxwriter to updater-py3_xlsxwriter-3.2.9 * updater-py3_xlsxwriter-3.2.9: Build Run on linux/arm/v7. * updater-py3_xlsxwriter-3.2.9: Package File Update Run on linux/amd64 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.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.9-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '907dacb948bc8e442a1e40dff9cd55c51b89606242e96a3acb6b7f0de619482b',
|
|
armv7l: '907dacb948bc8e442a1e40dff9cd55c51b89606242e96a3acb6b7f0de619482b',
|
|
i686: '290317a5dbbad3940844f8d9684b9e0c0a02151ac31ba4feec2b1ffcd58efc3b',
|
|
x86_64: 'd7d5b55d87548c71d6df707a42eb94ab02aa6cdbfc5d8937c7b878d26b3b04b5'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|