mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
14 lines
213 B
Ruby
14 lines
213 B
Ruby
require 'package'
|
|
|
|
class Six < Package
|
|
description 'Dummy package for py3_six'
|
|
homepage 'https://six.readthedocs.io/'
|
|
version '1'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
|
|
is_fake
|
|
|
|
depends_on 'py3_six'
|
|
end
|