blob: e941e15849f6cfc5266fdb55d4b4e89b1a10172b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: Diego Garcia <diego.garcia.cr at gmail.com>
# Maintained at https://github.com/AmmoniumX/python-selenium-bin, feel free to submit patches
pkgname=python-selenium-bin
pkgver=4.26.1
pkgrel=1
pkgdesc="Python language bindings for Selenium WebDriver"
arch=(x86_64)
url="https://github.com/SeleniumHQ/selenium"
license=(Apache-2.0)
depends=(
bzip2
gcc-libs
glibc
python
python-certifi
python-trio
python-trio-websocket
python-typing_extensions
python-urllib3
python-websocket-client
zlib
)
makedepends=(python-installer)
conflicts=(python-selenium)
provides=(python-selenium)
options=(!lto)
source=(
"https://files.pythonhosted.org/packages/91/08/10cff8463b3510b78f9e3dcef6b37c542b06d71ed1240a8940ba0c75d3bc/selenium-${pkgver}-py3-none-any.whl"
)
sha256sums=(
"1db3f3a0cd5bb07624fa8a3905a6fdde1595a42185a0617077c361dc53d104fb"
)
package() {
python -m installer --destdir="${pkgdir}" "selenium-${pkgver}-py3-none-any.whl"
}
|