mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt updated pip packages to updates-2025-01-13-00-20 * Add built packages for linux/386 to updates-2025-01-13-00-20 * Add built packages for linux/amd64 to updates-2025-01-13-00-20 * Add built packages for linux/arm/v7 to updates-2025-01-13-00-20 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
15 lines
322 B
Ruby
15 lines
322 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_typogrify < Pip
|
|
description 'Typogrify provides filters to enhance web typography.'
|
|
homepage 'https://python-markdown.github.io/'
|
|
version "2.1.0-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|