mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
23 lines
792 B
Ruby
23 lines
792 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_dateutil < Python
|
|
description 'Dateutil provides extensions to the standard Python datetime module.'
|
|
homepage 'https://dateutil.readthedocs.io/'
|
|
@_ver = '2.8.2'
|
|
version "#{@_ver}-py3.12"
|
|
license 'BSD-3 and Apache-2.0 or BSD-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/dateutil/dateutil.git'
|
|
git_hashtag @_ver
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'aab33e006e88c24a9a27329eaa60cdb902d51fe22e5d32da0e82e0325791449f',
|
|
armv7l: 'aab33e006e88c24a9a27329eaa60cdb902d51fe22e5d32da0e82e0325791449f',
|
|
i686: '9c0f9502226cdf9c8ef077fad9299ec500a4f888abcbd6f901076d59ead159f8',
|
|
x86_64: 'a743bbcc6597bf685529a3f2d06c93a18bdc799c042a753f8ede909316b61066'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
end
|