summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1814f269282c9b594fe7ff0bd9025539bb6a78c7 (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
# Contributor: Tinu Weber <martin.weber@epfl.ch>

pkgname=python-cothority
pkgver=0.1
pkgrel=3
arch=(any)

pkgdesc='Scalable collective authority prototype'
license=(AGPL3)
url='https://pypi.org/project/cothority/'
changelog='changelog'

depends=(python)
makedepends=(python-pip)

source=("https://files.pythonhosted.org/packages/6d/6b/620b90cdfb4f3c0121589f20960f0623e892248cfeceea17752c7e395baf/cothority-$pkgver-py3-none-$arch.whl")
sha256sums=(bc863cd937e90ea817b75e9c9ffb29ecf5f93651336b49e7c83d565c4b693f70)

package() {
  depends+=(python-protobuf python-websockets)

  PIP_CONFIG_FILE=/dev/null pip install \
    --isolated \
    --root="$pkgdir" \
    --ignore-installed \
    --no-deps \
    *.whl
}