void-packages/srcpkgs/thefuck/template
2020-10-10 10:21:33 -04:00

30 lines
913 B
Bash

# Template file for 'thefuck'
pkgname=thefuck
version=3.29
revision=4
build_style=python3-module
pycompile_module="thefuck"
hostmakedepends="python3-setuptools"
depends="python3-colorama python3-decorator python3-psutil python3-pyte
python3-requests"
checkdepends="python3-colorama python3-decorator python3-psutil python3-pyte
python3-pytest-mock python3-requests"
short_desc="Magnificent app which corrects your previous console command"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://github.com/nvbn/thefuck"
distfiles="https://github.com/nvbn/thefuck/archive/${version}.tar.gz"
checksum=34a9ec020ff991a96a895dfbe2313b69464bbcc6975b1ad8158b32a2de5803a9
do_check() {
# on python3 mock is unittest.mock
sed -i 's|from mock|from unittest.mock|g' tests/**.py
sed -i 's|from mock|from unittest.mock|g' tests/**/*.py
python3 -m pytest
}
post_install() {
vlicense LICENSE.md
}