mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Remove i686 compatibility from packages with dependencies incompatible with i686 * Remove armv7l compatibility from packages with dependencies incompatible with arvm7l * Abort builds/installs if the package has incompatible dependencies
19 lines
444 B
Ruby
19 lines
444 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pptx < Pip
|
|
description 'Python PPTX generates and manipulates Open XML PowerPoint files.'
|
|
homepage 'https://github.com/scanny/python-pptx/'
|
|
@_ver = '0.6.21'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'py3_lxml'
|
|
depends_on 'py3_pillow'
|
|
depends_on 'py3_xlsxwriter'
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|