mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
16 lines
339 B
Ruby
16 lines
339 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_websockets < Pip
|
|
description ' Library for building WebSocket servers and clients in Python'
|
|
homepage 'https://websockets.readthedocs.io/'
|
|
@_ver = '12.0'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' # L
|
|
|
|
no_compile_needed
|
|
end
|