Package Details: python-ccxt 4.2.21-1

Git Clone URL: https://aur.archlinux.org/python-ccxt.git (read-only, click to copy)
Package Base: python-ccxt
Description: A cryptocurrency trading library with support for 130+ exchanges
Upstream URL: https://ccxt.trade
Licenses: MIT
Submitter: Slacker
Maintainer: Kewl
Last Packager: Kewl
Votes: 2
Popularity: 0.048074
First Submitted: 2020-03-17 14:03 (UTC)
Last Updated: 2024-01-24 16:34 (UTC)

Pinned Comments

AchmadFathoni commented on 2022-09-10 16:06 (UTC)

Need co-maintainer for faster development response.

Latest Comments

AchmadFathoni commented on 2022-09-10 16:06 (UTC)

Need co-maintainer for faster development response.

fada79 commented on 2022-08-22 11:27 (UTC)

Hello,

For version 1.92.47, the sha256 sum should be updated to : 702fb53a7d1ffa38fde65e0208fef853de0b6d0da50d9eb139c52d40e711e205

Thanks

AchmadFathoni commented on 2022-03-21 08:07 (UTC)

Here is more updated pkgbuild

pkgname=python-ccxt
_pkgname=${pkgname:7}
pkgver=1.76.66
pkgrel=1
pkgdesc="A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges"
arch=(any)
url="https://ccxt.trade"
license=(MIT)
depends=(python python-certifi python-requests python-cryptography python-aiohttp python-aiodns python-yarl)
makedepends=(python-build python-installer python-wheel)
source=(https://files.pythonhosted.org/packages/source/${_pkgname::1}/$_pkgname/$_pkgname-$pkgver.tar.gz)
sha256sums=('ba058d5708e9a1bdd0f0c611f0ad65a5ea9952eae6059a0b7895380acb7923d3')

prepare() {
  cd "$srcdir"/ccxt-$pkgver
  mv README.{rst,md}
}

build() {
  cd ${srcdir}/${_pkgname}-${pkgver}
  python -m build --wheel --no-isolation
}

package() {
  cd ${srcdir}/${_pkgname}-${pkgver}
  python -m installer --destdir="$pkgdir" dist/*.whl
}