mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
14 lines
270 B
Ruby
14 lines
270 B
Ruby
require 'package'
|
|
require_relative 'python2'
|
|
|
|
class Python27 < Package
|
|
description 'A compatibility package for python2.'
|
|
homepage Python2.homepage.to_s
|
|
version Python2.version.to_s
|
|
compatibility Python2.compatibility.to_s
|
|
|
|
is_fake
|
|
|
|
depends_on 'python2'
|
|
end
|