Package Details: python-dottorrent 1.9.2-3

Git Clone URL: https://aur.archlinux.org/python-dottorrent.git (read-only, click to copy)
Package Base: python-dottorrent
Description: High-level Python 3 library for creating .torrent files
Upstream URL: https://github.com/kz26/dottorrent
Keywords: torrent
Licenses: MIT
Submitter: username227
Maintainer: username227
Last Packager: username227
Votes: 0
Popularity: 0.000000
First Submitted: 2025-01-05 22:14 (UTC)
Last Updated: 2025-03-24 22:26 (UTC)

Dependencies (3)

Sources (1)

Latest Comments

evine commented on 2025-03-24 15:15 (UTC) (edited on 2025-04-08 04:59 (UTC) by evine)

A reference for downloading source code from pypi, it is newer:

_pkgname=dottorrent
pkgname="python-${_pkgname}"
pkgver=1.10.1
pkgrel=1
pkgdesc="High-level Python 3 library for creating .torrent files"
url="https://github.com/kz26/${_pkgname}"
arch=('any')
license=('MIT')
depends=("python-bencoder-pyx")
makedepends=('python-build' 'python-installer' 'python-setuptools')
source=("${_pkgname}-${pkgver}.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname::1}/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
sha256sums=('c595f864d46660057d84aa4b9b581454d37982e5ee5417198241c1df919ffc20')

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

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