mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-02-14-00-18 * Add unbuilt updated ruby gem packages to updates-2025-02-14-00-18 * Add built packages for linux/386 to updates-2025-02-14-00-18 * Add built packages for linux/amd64 to updates-2025-02-14-00-18 * Add built packages for linux/arm/v7 to updates-2025-02-14-00-18 * Regenerate x86 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Regenerate x86 binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> 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> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
24 lines
750 B
Ruby
24 lines
750 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_psutil < Pip
|
|
description 'psutil is a cross-platform library for process and system monitoring in Python.'
|
|
homepage 'https://github.com/giampaolo/psutil/'
|
|
version "7.0.0-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c1462ffa38457929fffad4512569062844872b589fa6b05fd9665632a583be52',
|
|
armv7l: 'c1462ffa38457929fffad4512569062844872b589fa6b05fd9665632a583be52',
|
|
i686: 'ebf1ed2b4b985425c7ce032ceb103f0a0ed9c15f71701d5c89e3f0dc808e93f3',
|
|
x86_64: '126f8ce81336e732d0402cf5bc96ea9d875d750c01554d79707a9fca8c96225b'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|