diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-10-31 21:53:23 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-05 21:15:17 +0700 |
commit | 033d040b849171fe07436cb228921d147cab2c59 (patch) | |
tree | c44a9866f6c4cac9dec8cc328e7ca2b5b636bfad /python | |
parent | fcbdb7a3b4fa7bfef447be0884f463e382f7090c (diff) | |
download | slackbuilds-033d040b849171fe07436cb228921d147cab2c59.tar.gz |
python/python3-pypandoc: Fix offline build.
This package needs wheel - it tries to download it during the build
otherwise and if the build is not granted internet access, it fails:
```
ERROR: Could not find a version that satisfies the requirement
wheel>=0.25.0 (from versions: none)
ERROR: No matching distribution found for wheel>=0.25.0
subprocess.CalledProcessError: Command '['/usr/bin/python3', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/build_python3-pypandoc/tmptgs7v33g', '--quiet',
'wheel>=0.25.0']' returned non-zero exit status 1.
```
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/python3-pypandoc/python3-pypandoc.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python3-pypandoc/python3-pypandoc.info b/python/python3-pypandoc/python3-pypandoc.info index e2ae144119..3ae3b5fcd4 100644 --- a/python/python3-pypandoc/python3-pypandoc.info +++ b/python/python3-pypandoc/python3-pypandoc.info @@ -5,6 +5,6 @@ DOWNLOAD="https://github.com/JessicaTegner/pypandoc/archive/v1.9/pypandoc-1.9.ta MD5SUM="dab6504ad120ddb05b6032a8686bd566" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="pandoc-bin" +REQUIRES="pandoc-bin wheel" MAINTAINER="Isaac Yu" EMAIL="isaacyu1@isaacyu1.com" |