mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
13 lines
216 B
Ruby
13 lines
216 B
Ruby
require 'package'
|
|
|
|
class Python27 < Package
|
|
description 'A compatibility package for python2.'
|
|
homepage 'https://www.python.org/'
|
|
version '2.7.18-1'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'python2'
|
|
end
|