contrib/python3-mock/Pkgfile

18 lines
498 B
Plaintext
Raw Normal View History

2022-03-27 16:24:49 +02:00
# Description: Mocking and Patching Library for Testing
# URL: https://github.com/testing-cabal/mock/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-pbr python3-six
name=python3-mock
2023-07-11 17:39:30 +02:00
version=5.1.0
2022-03-27 16:24:49 +02:00
release=1
source=(https://github.com/testing-cabal/mock/archive/$version/$name-$version.tar.gz)
build() {
cd mock-$version
2023-04-17 18:54:54 +02:00
2022-03-27 16:24:49 +02:00
sed -i 's/unittest2/unittest/g' mock/tests/*.py
/usr/bin/python3 setup.py build
/usr/bin/python3 setup.py install --root=$PKG --optimize=1
}