mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Update freetds homepage * Update py3_minidb homepage * Update shhmsg homepage * Update shhopt homepage
16 lines
330 B
Ruby
16 lines
330 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_minidb < Pip
|
|
description 'Minidb is a simple SQLite3-based store for Python objects.'
|
|
homepage 'https://thp.io/2010/minidb/'
|
|
@_ver = '2.0.5'
|
|
version "#{@_ver}-py3.12"
|
|
license 'ISC'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|