Files
chromebrew/packages/py3_pptx.rb
Maximilian Downey Twiss eb14c41653 Remove compatibility from packages with incompatible dependencies (#9458)
* 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
2024-03-11 13:09:12 -04:00

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