mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 23:48:01 -05:00
17 lines
457 B
Ruby
17 lines
457 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_unsupported_python < Pip
|
|
description 'This package can be used as a conditional dependency to indicate lack of support for particular versions of Python.'
|
|
homepage 'https://github.com/ntessore/unsupported-python'
|
|
version '1.0.0-py3.12'
|
|
license 'GPL-3+'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
|
|
pre_configure_options 'ALLOW_UNSUPPORTED_PYTHON=3.12'
|
|
end
|