mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Update babl, gegl, gimp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add arm binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_jinja Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add x86_64 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
17 lines
364 B
Ruby
17 lines
364 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_jinja2 < Pip
|
|
description 'Jinja2 is a very fast and expressive template engine.'
|
|
homepage 'https://jinja.palletsprojects.com/'
|
|
@_ver = '3.1.3'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'py3_markupsafe'
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|