mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Warn for pip upload failure due to twine breakage, fix json.rb, add ruby_rake to core to fix unit test containers. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add updates for libssh2, libunbound, libtirpc, libunistring. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <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 "6.1.0-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'cd9bad21b8e6d4854fd7f766259b2c34d02daa980469d327b41e81074b2f312e',
|
|
armv7l: 'cd9bad21b8e6d4854fd7f766259b2c34d02daa980469d327b41e81074b2f312e',
|
|
i686: '9d7ac4536b6c9d11861f20c5399187af2d61f1b551e0cb740094bc9c582b028b',
|
|
x86_64: 'b6a41647e90cf40227f6e10234aabc037f1b2c0394846d2e15ead119c2c90a66'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|