Files
chromebrew/packages/py3_dateutil.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

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