mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
15 lines
325 B
Ruby
15 lines
325 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_py < Pip
|
|
description 'Py is a library with cross-python path, ini-parsing, io, code, log facilities.'
|
|
homepage 'https://py.readthedocs.io/'
|
|
version '1.11.0-py3.12'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|