mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-01-08-00-18 * Add unbuilt updated ruby gem packages to updates-2025-01-08-00-18 * Add built packages for linux/386 to updates-2025-01-08-00-18 * Add built packages for linux/amd64 to updates-2025-01-08-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-08-00-18 --------- 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
283 B
Ruby
15 lines
283 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pygments < Pip
|
|
description 'Python Syntax Highlighter'
|
|
homepage 'https://pygments.org/'
|
|
version "2.19.1-#{CREW_PY_VER}"
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|