diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-10-31 21:38:08 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-05 21:15:17 +0700 |
commit | dec8501f219f266e072127476f278dadf52c0ccf (patch) | |
tree | 5017818d9f31d4437729dfdaba6818828b958ba5 /python | |
parent | de55c77bbfef9859bf6ff2b88d0537a7ecec1f61 (diff) |
python/python-mpmath: Add missing setuptools-scm dep.
This is declared upstream here:
https://github.com/fredrik-johansson/mpmath/blob/1.2.1/setup.cfg#L30
If setuptools-scm is not installed, the build will try to downloaad
it as root when it runs. This means you cannot build this package
without internet access.
```
distutils.errors.DistutilsError: Command '['/usr/bin/python2', '-m',
'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w',
'/tmp/SBo/build_python-mpmath/tmpymNMLJ', '--quiet',
'setuptools_scm>=1.7.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/python-mpmath/python-mpmath.info | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python-mpmath/python-mpmath.info b/python/python-mpmath/python-mpmath.info index d2ec5dd8ef7c..196fa9a187f4 100644 --- a/python/python-mpmath/python-mpmath.info +++ b/python/python-mpmath/python-mpmath.info @@ -5,6 +5,6 @@ DOWNLOAD="https://files.pythonhosted.org/packages/95/ba/7384cb4db4ed474d45829440 MD5SUM="ef8a6449851755319673b06f71731d52" DOWNLOAD_x86_64="" MD5SUM_x86_64="" -REQUIRES="" +REQUIRES="python2-setuptools-scm" MAINTAINER="Alexander Verbovetsky" EMAIL="alik@ejik.org" |