mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-03-03-00-20 * Add built packages for linux/386 to updates-2025-03-03-00-20 * Add built packages for linux/amd64 to updates-2025-03-03-00-20 * Add built packages for linux/arm/v7 to updates-2025-03-03-00-20 --------- 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>
29 lines
828 B
Ruby
29 lines
828 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pytest < Pip
|
|
description 'Pytest is simple powerful testing with Python.'
|
|
homepage 'https://pytest.org/'
|
|
version "8.3.5-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a8f374caf8cde5529826fc42fa106670ede7e0a017aa936749323cf9b96e6ffd',
|
|
armv7l: 'a8f374caf8cde5529826fc42fa106670ede7e0a017aa936749323cf9b96e6ffd',
|
|
i686: '182ed975e3d09d299559b33bcabca68586e83dbe6f71a963795599283690b0e5',
|
|
x86_64: '748f87e1e5797148146ee578eec9900415e080d6e64a6cbf758a3160b8a8faf0'
|
|
})
|
|
|
|
depends_on 'py3_py'
|
|
depends_on 'py3_toml'
|
|
depends_on 'py3_packaging'
|
|
depends_on 'py3_attrs'
|
|
depends_on 'py3_pluggy'
|
|
depends_on 'py3_iniconfig'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|