mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-03-20-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-20-00-19 * Add built packages for linux/386 to updates-2025-03-20-00-19 * Add built packages for linux/amd64 to updates-2025-03-20-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-20-00-19 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
725 B
Ruby
23 lines
725 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_platformdirs < Pip
|
|
description 'A small Python package for determining appropriate platform-specific dirs.'
|
|
homepage 'https://pypi.org/project/platformdirs'
|
|
version "4.3.7-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1dba3c10bf7bfdb665ee88a01de8bd52c532e3d2098f6fad0f1dabf749d5fc63',
|
|
armv7l: '1dba3c10bf7bfdb665ee88a01de8bd52c532e3d2098f6fad0f1dabf749d5fc63',
|
|
i686: 'b444e71569ed92b27620aefa15692667f38be64dc2d4665f53e625b99b91eee6',
|
|
x86_64: 'b5dfda11fc1e0fbb8dc8fbb8337e84eb27f390fda3e7264042138b569dbc64a6'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|